summaryrefslogtreecommitdiffstats
path: root/testing/dkimproxy/dkimproxy.initd
diff options
context:
space:
mode:
Diffstat (limited to 'testing/dkimproxy/dkimproxy.initd')
-rw-r--r--testing/dkimproxy/dkimproxy.initd38
1 files changed, 0 insertions, 38 deletions
diff --git a/testing/dkimproxy/dkimproxy.initd b/testing/dkimproxy/dkimproxy.initd
deleted file mode 100644
index 9e8862813..000000000
--- a/testing/dkimproxy/dkimproxy.initd
+++ /dev/null
@@ -1,38 +0,0 @@
-#!/sbin/runscript
-
-NAME=dkimproxy
-
-depend() {
- need net
- after firewall
-}
-
-launch() {
- ebegin "Starting ${DAEMON}"
- start-stop-daemon --start --quiet \
- --pidfile /var/run/${DAEMON}.pid \
- --exec ${DAEMON} -- ${OPTS}
- eend $?
-}
-
-terminate() {
- ebegin "Stopping ${DAEMON}"
- start-stop-daemon --stop --quiet \
- --exec ${DAEMON} \
- --pidfile /var/run/${DAEMON}.pid \
- eend $?
-}
-
-start() {
- DAEMON="${NAME}.in"
- launch
- DAEMON="${NAME}.out"
- launch
-}
-
-stop() {
- DAEMON="${NAME}.in"
- terminate
- DAEMON="${NAME}.out"
- terminate
-}