diff options
Diffstat (limited to 'package/aiccu/files/aiccu.init')
-rw-r--r-- | package/aiccu/files/aiccu.init | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/package/aiccu/files/aiccu.init b/package/aiccu/files/aiccu.init deleted file mode 100644 index c3d3d5b4b..000000000 --- a/package/aiccu/files/aiccu.init +++ /dev/null @@ -1,29 +0,0 @@ -#!/bin/sh -#PKG aiccu -#INIT 60 -. /etc/rc.conf - -case $1 in -autostop) ;; -autostart) - test x"${aiccu:-NO}" = x"NO" && exit 0 - test x"$aiccu" = x"DAEMON" && test -x /bin/mksh && exec mksh -T- $0 start - exec sh $0 start - ;; -start) - aiccu start - ;; -stop) - aiccu stop - ;; - -restart) - sh $0 stop - sh $0 start - ;; -*) - echo "Usage: $0 {start | stop | restart}" - exit 1 - ;; -esac -exit $? |