summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sys-apps/hwmultd/files/hwmultd.initd')
-rw-r--r--sys-apps/hwmultd/files/hwmultd.initd28
1 files changed, 0 insertions, 28 deletions
diff --git a/sys-apps/hwmultd/files/hwmultd.initd b/sys-apps/hwmultd/files/hwmultd.initd
deleted file mode 100644
index 5151a1f..0000000
--- a/sys-apps/hwmultd/files/hwmultd.initd
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/sbin/runscript
-
-DAEMON="/usr/sbin/hwmultd"
-PIDFILE="/var/run/hwmultd/hwmultd.pid"
-
-extra_commands="reload"
-
-depend() {
- need net
-}
-
-start() {
- ebegin "Starting hwmultd"
- start-stop-daemon --start --exec ${DAEMON}
- eend $?
-}
-
-stop() {
- ebegin "Stopping hwmultd"
- start-stop-daemon --stop --pidfile ${PIDFILE}
- eend $?
-}
-
-reload() {
- ebegin "Reloading hwmultd configuration"
- start-stop-daemon --signal HUP --pidfile ${PIDFILE}
- eend $?
-}