summaryrefslogtreecommitdiffstats
path: root/src.etc/init.d/httpd
diff options
context:
space:
mode:
authorP. J. McDermott <pj@pehjota.net>2014-06-02 20:02:43 (EDT)
committer P. J. McDermott <pj@pehjota.net>2014-06-02 20:02:43 (EDT)
commit62cf01e0161259ac9762125e89e1051008c2203c (patch)
tree3a8f379cc6e01a63ad67b6eb256731d11259ac5f /src.etc/init.d/httpd
parent171da615c4d8d51ed5f4f2e445d6e19fc15c6f9a (diff)
Convert some service scripts to /etc/rc.common.
Diffstat (limited to 'src.etc/init.d/httpd')
-rwxr-xr-xsrc.etc/init.d/httpd25
1 files changed, 3 insertions, 22 deletions
diff --git a/src.etc/init.d/httpd b/src.etc/init.d/httpd
index 1dc0d28..1207dfb 100755
--- a/src.etc/init.d/httpd
+++ b/src.etc/init.d/httpd
@@ -1,32 +1,13 @@
-#!/bin/sh
+#!/bin/sh /etc/rc.common
start()
{
- printf 'Starting httpd... '
+ log 'Starting httpd'
start-stop-daemon -S -q -n httpd -x /usr/sbin/httpd -- -h /var/www
- printf 'done.\n'
}
stop()
{
- printf 'Stopping httpd... '
+ log 'Stopping httpd'
start-stop-daemon -K -q -n httpd
- printf 'done.\n'
}
-
-case "${1}" in
- start)
- start
- ;;
- stop)
- stop
- ;;
- restart)
- stop
- start
- ;;
- *)
- printf 'Usage: %s {start|stop|restart}\n' "${0}" >&2
- exit 1
- ;;
-esac