summaryrefslogtreecommitdiffstats
path: root/src.etc/init.d/httpd
diff options
context:
space:
mode:
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