summaryrefslogtreecommitdiff
path: root/package/esound/files/esd.init
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2014-09-25 10:48:48 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2014-09-25 10:49:04 +0200
commitbbf151ff5613c562fe1e044902fbbb93194c7450 (patch)
tree2cd9ce73d2bd20cd98fc31b9518c363ef1998645 /package/esound/files/esd.init
parent23b102e99e53394482e2363c533e43e54250ddfd (diff)
remove esound, not really maintained, use pulseaudio
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