diff options
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 |