summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'net-misc/igmpproxy/files/igmpproxy.initd')
-rw-r--r--net-misc/igmpproxy/files/igmpproxy.initd20
1 files changed, 0 insertions, 20 deletions
diff --git a/net-misc/igmpproxy/files/igmpproxy.initd b/net-misc/igmpproxy/files/igmpproxy.initd
deleted file mode 100644
index d8f727ba034c..000000000000
--- a/net-misc/igmpproxy/files/igmpproxy.initd
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-config="/etc/${RC_SVCNAME}.conf"
-name="IGMPproxy"
-pidfile="/run/${RC_SVCNAME}.pid"
-
-command="igmpproxy"
-command_args="${IGMPPROXY_OPTS} ${config}"
-procname="${RC_SVCNAME}"
-
-start_pre() {
- if [ ! -f "${config}" ]; then
- eerror "Please create ${config} before starting ${name}!"
- return 1
- else
- return 0
- fi
-}