summaryrefslogtreecommitdiff
path: root/net-analyzer/arpon/files/arpon.initd
diff options
context:
space:
mode:
Diffstat (limited to 'net-analyzer/arpon/files/arpon.initd')
-rw-r--r--net-analyzer/arpon/files/arpon.initd19
1 files changed, 0 insertions, 19 deletions
diff --git a/net-analyzer/arpon/files/arpon.initd b/net-analyzer/arpon/files/arpon.initd
deleted file mode 100644
index dc69135c26e3..000000000000
--- a/net-analyzer/arpon/files/arpon.initd
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/sbin/openrc-run
-# Distributed under the terms of the GNU General Public License v2
-
-depend() {
- need net
-}
-
-start() {
- ebegin "Starting arpon"
- start-stop-daemon --start --background --make-pidfile --pidfile "/var/run/arpon.pid" \
- --exec /usr/sbin/arpon -- ${ARPON_OPTS} >/dev/null 2>&1
- eend $?
-}
-
-stop() {
- ebegin "Stopping arpon"
- start-stop-daemon --stop --pidfile "/var/run/arpon.pid"
- eend $?
-}