summaryrefslogtreecommitdiff
path: root/net-im/minbif/files/minbif.initd
diff options
context:
space:
mode:
Diffstat (limited to 'net-im/minbif/files/minbif.initd')
-rw-r--r--net-im/minbif/files/minbif.initd23
1 files changed, 0 insertions, 23 deletions
diff --git a/net-im/minbif/files/minbif.initd b/net-im/minbif/files/minbif.initd
deleted file mode 100644
index 06cac415f61d..000000000000
--- a/net-im/minbif/files/minbif.initd
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-MINBIF_EXEC="/usr/bin/minbif"
-
-depend() {
- need logger net
-}
-
-start() {
- ebegin "Starting minbif"
- start-stop-daemon --start --startas ${MINBIF_EXEC} \
- -c minbif:minbif --exec ${MINBIF_EXEC} -- \
- /etc/minbif/minbif.conf
- eend $?
-}
-
-stop() {
- ebegin "Stopping minbif"
- start-stop-daemon --stop --exec ${MINBIF_EXEC}
- eend $?
-}