diff options
Diffstat (limited to 'main/mini_httpd/mini_httpd.initd')
-rw-r--r-- | main/mini_httpd/mini_httpd.initd | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/main/mini_httpd/mini_httpd.initd b/main/mini_httpd/mini_httpd.initd new file mode 100644 index 0000000000..4460a539ef --- /dev/null +++ b/main/mini_httpd/mini_httpd.initd @@ -0,0 +1,25 @@ +#!/sbin/runscript +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/www-servers/mini_httpd/files/mini_httpd.init,v 1.2 2007/08/26 21:20:21 bangert Exp $ + +pidfile=/var/run/${SVCNAME}.pid + +depend() { + need net +} + +start() { + ebegin "Starting $SVCNAME" + start-stop-daemon --quiet --start --exec /usr/sbin/mini_httpd \ + --pidfile $pidfile -- -i $pidfile \ + ${MINI_HTTPD_OPTS:--C /etc/${SVCNAME}.conf} + eend $? +} + +stop() { + ebegin "Stopping $SVCNAME" + start-stop-daemon --quiet --stop --pidfile $pidfile + eend $? +} + |