aboutsummaryrefslogtreecommitdiffstats
path: root/testing/thttpd/thttpd.initd
diff options
context:
space:
mode:
Diffstat (limited to 'testing/thttpd/thttpd.initd')
-rw-r--r--testing/thttpd/thttpd.initd27
1 files changed, 0 insertions, 27 deletions
diff --git a/testing/thttpd/thttpd.initd b/testing/thttpd/thttpd.initd
deleted file mode 100644
index 5ba5247b6d..0000000000
--- a/testing/thttpd/thttpd.initd
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/sbin/openrc-run
-# init.d file for thttpd
-
-name=thttpd
-daemon=/usr/sbin/$name
-
-depend() {
- need net
- after firewall
-}
-
-start() {
- ebegin "Starting ${name}"
- start-stop-daemon --start --quiet \
- --pidfile /var/run/${name}.pid \
- --exec ${daemon} -- ${sample_opts}
- eend $?
-}
-
-stop() {
- ebegin "Stopping ${name}"
- start-stop-daemon --stop --quiet \
- --pidfile /var/run/$name.pid \
- --exec ${daemon}
- eend $?
-}
-