diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2024-02-16 03:58:44 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2024-02-16 04:00:52 +0100 |
commit | 5a9932a33df3c582c7a35c9ae448315e67618b38 (patch) | |
tree | 9a69fc78ff1e63f32ec106355c6ecae13279af79 /package/ympd/files | |
parent | e7b4507965cad75d243f6420c0c74a206a745251 (diff) |
ympd: remove package, use mympd instead
Diffstat (limited to 'package/ympd/files')
-rw-r--r-- | package/ympd/files/ympd.init | 29 | ||||
-rw-r--r-- | package/ympd/files/ympd.postinst | 3 |
2 files changed, 0 insertions, 32 deletions
diff --git a/package/ympd/files/ympd.init b/package/ympd/files/ympd.init deleted file mode 100644 index 6dd7af28c..000000000 --- a/package/ympd/files/ympd.init +++ /dev/null @@ -1,29 +0,0 @@ -#!/bin/sh -#PKG ympd -#INIT 90 - -. /etc/rc.conf - -case $1 in -autostop) ;; -autostart) - test x"${ympd:-NO}" = x"NO" && exit 0 - test x"$ympd" = x"DAEMON" && test -x /bin/mksh && exec mksh -T- $0 start - exec sh $0 start - ;; -start) - ympd -w 80 & - ;; -stop) - kill $(pgrep -f ympd) - ;; -restart) - sh $0 stop - sh $0 start - ;; -*) - echo "Usage: $0 {start | stop | restart}" - exit 1 - ;; -esac -exit $? diff --git a/package/ympd/files/ympd.postinst b/package/ympd/files/ympd.postinst deleted file mode 100644 index abc75c6f7..000000000 --- a/package/ympd/files/ympd.postinst +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/sh -. $IPKG_INSTROOT/etc/functions.sh -add_rcconf ympd NO |