summaryrefslogtreecommitdiff
path: root/www-servers/thttpd/files/thttpd.init.1
diff options
context:
space:
mode:
Diffstat (limited to 'www-servers/thttpd/files/thttpd.init.1')
-rw-r--r--www-servers/thttpd/files/thttpd.init.134
1 files changed, 0 insertions, 34 deletions
diff --git a/www-servers/thttpd/files/thttpd.init.1 b/www-servers/thttpd/files/thttpd.init.1
deleted file mode 100644
index 3b7756eae19a..000000000000
--- a/www-servers/thttpd/files/thttpd.init.1
+++ /dev/null
@@ -1,34 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License, v3 or later
-
-depend() {
- need net
- use dns logger netmount
- after sshd
-}
-
-checkconfig() {
- if [ ! -d "$THTTPD_DOCROOT" ]; then
- eend 1 "THTTPD_DOCROOT not set correctly in /etc/conf.d/${SVCNAME}"
- fi
-}
-
-start() {
- ebegin "Starting ${SVCNAME}"
-
- checkconfig || return 1
-
- start-stop-daemon --quiet --start --exec /usr/sbin/thttpd \
- --pidfile /var/run/${SVCNAME}.pid --chdir "$THTTPD_DOCROOT" -- \
- -i /var/run/${SVCNAME}.pid \
- -l /var/log/${SVCNAME}.log \
- ${THTTPD_OPTS}
- eend $?
-}
-
-stop() {
- ebegin "Stopping ${SVCNAME}"
- start-stop-daemon --quiet --stop --pidfile /var/run/${SVCNAME}.pid
- eend $?
-}