diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2014-09-25 10:48:48 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2014-09-25 10:49:04 +0200 |
commit | bbf151ff5613c562fe1e044902fbbb93194c7450 (patch) | |
tree | 2cd9ce73d2bd20cd98fc31b9518c363ef1998645 /package/esound/files | |
parent | 23b102e99e53394482e2363c533e43e54250ddfd (diff) |
remove esound, not really maintained, use pulseaudio
Diffstat (limited to 'package/esound/files')
-rw-r--r-- | package/esound/files/esd.init | 28 | ||||
-rw-r--r-- | package/esound/files/esound.postinst | 3 |
2 files changed, 0 insertions, 31 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 diff --git a/package/esound/files/esound.postinst b/package/esound/files/esound.postinst deleted file mode 100644 index ecf2ec8da..000000000 --- a/package/esound/files/esound.postinst +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/sh -. $IPKG_INSTROOT/etc/functions.sh -add_rcconf esd NO |