diff options
Diffstat (limited to 'net-misc/wicd/files/wicd-init.d')
-rw-r--r-- | net-misc/wicd/files/wicd-init.d | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/net-misc/wicd/files/wicd-init.d b/net-misc/wicd/files/wicd-init.d deleted file mode 100644 index b61bf66a0491..000000000000 --- a/net-misc/wicd/files/wicd-init.d +++ /dev/null @@ -1,24 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2006 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -opts="start stop restart" - -WICD_DAEMON=/usr/sbin/wicd -WICD_PIDFILE=/var/run/wicd/wicd.pid - -depend() { - need dbus -} - -start() { - ebegin "Starting wicd daemon" - "${WICD_DAEMON}" >/dev/null 2>&1 - eend $? -} - -stop() { - ebegin "Stopping wicd daemon" - start-stop-daemon --stop --pidfile "${WICD_PIDFILE}" - eend $? -} |