summaryrefslogtreecommitdiff
path: root/package/esound/files/esd.init
diff options
context:
space:
mode:
Diffstat (limited to 'package/esound/files/esd.init')
-rw-r--r--package/esound/files/esd.init28
1 files changed, 0 insertions, 28 deletions
diff --git a/package/esound/files/esd.init b/package/esound/files/esd.init
deleted file mode 100644
index 336ec9bfe..000000000
--- a/package/esound/files/esd.init
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/bin/sh
-#PKG esound
-#INIT 75
-. /etc/rc.conf
-
-case $1 in
-autostop) ;;
-autostart)
- test x"${esd:-NO}" = x"NO" && exit 0
- test x"$esd" = x"DAEMON" && test -x /bin/mksh && exec mksh -T- $0 start
- exec sh $0 start
- ;;
-start)
- # start as another user via: su - mpd -c 'esd ..'
- /usr/bin/esd -public -tcp -nobeeps -noterminate &
- ;;
-stop)
- kill $(pgrep -f /usr/bin/esd)
- ;;
-restart)
- sh $0 stop
- sh $0 start
- ;;
-*)
- echo "Usage: $0 {start | stop | restart}"
- ;;
-esac
-exit 0