]> andersk Git - moira.git/commitdiff
Disable shutdowns completely.
authorwesommer <wesommer>
Fri, 11 Sep 1987 15:33:11 +0000 (15:33 +0000)
committerwesommer <wesommer>
Fri, 11 Sep 1987 15:33:11 +0000 (15:33 +0000)
server/mr_shutdown.c

index a285ba7538cfff7c9f7398d9836baede9bd6832f..053735f4239135cff4508ea76f83c1a000fdb2f4 100644 (file)
@@ -6,9 +6,15 @@
  *     Copyright (C) 1987 by the Massachusetts Institute of Technology
  *
  *     $Log$
- *     Revision 1.3  1987-08-04 02:41:29  wesommer
- *     Clean up messages.
+ *     Revision 1.4  1987-09-11 15:33:11  wesommer
+ *     Disable shutdowns completely.
  *
+ * Revision 1.4  87/09/09  01:43:11  wesommer
+ * Disable server shutdown request.
+ * 
+ * Revision 1.3  87/08/04  02:41:29  wesommer
+ * Clean up messages.
+ * 
  * Revision 1.2  87/06/21  16:42:12  wesommer
  * Performance work, rearrangement of include files.
  * 
@@ -38,28 +44,11 @@ do_shutdown(cl)
        client *cl;
 {
        static char buf[BUFSIZ];
-
-       if (cl->args->sms_argc != 1) {
-               cl->reply.sms_status = EINVAL;
-               return;
-       }
-               
-       if (!cl->clname) {
-               com_err(whoami, 0, "Unauthenticated shutdown request rejected",
-                       cl->clname);
-               cl->reply.sms_status = EACCES;
-               return;
-       }
-       if (!strcmp(cl->clname, "wesommer@ATHENA.MIT.EDU") ||
-           !strcmp(cl->clname, "mike@ATHENA.MIT.EDU")) {
-               com_err(whoami, 0, "Shut down by %s", cl->clname);
-               (void) strcpy(buf, "Reason for shutdown: ");
-               (void) strcat(buf, cl->args->sms_argv[0]);
-               takedown = buf;
-       } else {
-               com_err(whoami, 0, "Shutdown request by %s rejected",
-                       cl->clname);
-               cl->reply.sms_status = EACCES;
-       }
+       /*
+        * This feature is no longer supported.  Sorry.
+        */
+       com_err(whoami, 0, "Shutdown request by %s rejected",
+               cl->clname);
+       cl->reply.sms_status = EACCES;
 }
                
This page took 0.033114 seconds and 5 git commands to generate.