diff options
author | P. J. McDermott <pj@pehjota.net> | 2014-06-03 11:41:26 (EDT) |
---|---|---|
committer | P. J. McDermott <pj@pehjota.net> | 2014-06-03 11:41:26 (EDT) |
commit | 8bb39b24d81cf1fa7dacf2f79e2583328ba00c3c (patch) | |
tree | 23218ba372536182eb5e9e31ed093c1b64639087 /src.etc/init.d/httpd | |
parent | b43c8c2e6ba593169edafd9f1b5b67526edab044 (diff) |
Make certain service scripts use PID files.
Diffstat (limited to 'src.etc/init.d/httpd')
-rwxr-xr-x | src.etc/init.d/httpd | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src.etc/init.d/httpd b/src.etc/init.d/httpd index dc73d87..c26e151 100755 --- a/src.etc/init.d/httpd +++ b/src.etc/init.d/httpd @@ -6,11 +6,12 @@ STOP='60' start() { log 'Starting httpd' - start-stop-daemon -S -q -n httpd -x /usr/sbin/httpd -- -h /var/www + start-stop-daemon -S -q -p /var/run/httpd.pid -m \ + -x /usr/sbin/httpd -b -- -f -h /var/www } stop() { log 'Stopping httpd' - start-stop-daemon -K -q -n httpd + start-stop-daemon -K -q -p /var/run/httpd.pid } |