summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sys-auth/icmpdn/files/init.d-icmpdnd')
-rw-r--r--sys-auth/icmpdn/files/init.d-icmpdnd26
1 files changed, 0 insertions, 26 deletions
diff --git a/sys-auth/icmpdn/files/init.d-icmpdnd b/sys-auth/icmpdn/files/init.d-icmpdnd
deleted file mode 100644
index 452b644c63fa..000000000000
--- a/sys-auth/icmpdn/files/init.d-icmpdnd
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-BINARY="/usr/sbin/icmpdnd"
-
-[ -n "${TTL}" ] && ICMPDND_OPTS="${ICMPDND_OPTS} -t ${TTL}"
-[ -n "${DOMAINNAME}" ] && ICMPDND_OPTS="${ICMPDND_OPTS} -d ${DOMAINNAME}"
-
-depend() {
- need net
- after ypbind
-}
-
-start() {
- ebegin "Starting icmpdnd"
- start-stop-daemon --start --quiet --exec ${BINARY} -- ${ICMPDND_OPTS}
- eend $?
-}
-
-stop() {
- ebegin "Stopping icmpdnd"
- start-stop-daemon --stop --quiet --exec ${BINARY}
- eend $?
-}
-