Index: openacs-4/packages/acs-core-docs/www/files/restart-aolserver.txt =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-core-docs/www/files/restart-aolserver.txt,v diff -u -N -r1.1 -r1.2 --- openacs-4/packages/acs-core-docs/www/files/restart-aolserver.txt 13 Mar 2001 22:59:26 -0000 1.1 +++ openacs-4/packages/acs-core-docs/www/files/restart-aolserver.txt 1 Feb 2002 17:09:12 -0000 1.2 @@ -1,5 +1,6 @@ #!/usr/bin/perl -## Restarts an AOLserver. Takes as its only argument the name of the server to kill. +## Restarts an AOLserver. +## Takes as its only argument the name of the server to kill. ## bquinn 6/16/2000 with help from {ryanlee, doug}@arsdigita ## This is a perl script because it needs to run setuid root, ## and perl has fewer security gotchas than most shells. @@ -18,7 +19,7 @@ my $server = shift; $server =~ /^([\w-]*)$/; my $service_name = $1; -my $PIDFILE = "/home/aol30/log/nspid.$service_name"; +my $PIDFILE = "/usr/local/aolserver/log/nspid.$service_name"; my $pid; $< = $>; # set realuid to effective uid (root)