summaryrefslogtreecommitdiff
path: root/package/aiccu/files/aiccu.init
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2017-09-17 12:27:57 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2017-09-17 12:27:57 +0200
commit67785120a503ac636631a798d1cda127e4386d2d (patch)
tree46900f5d06a103a9e969460ac1af458a01fcc8db /package/aiccu/files/aiccu.init
parent95444b27abfb723db6c66c08dc6c12c7e1128e2e (diff)
aiccu: remove, sixxs service is no longer available
Diffstat (limited to 'package/aiccu/files/aiccu.init')
-rw-r--r--package/aiccu/files/aiccu.init29
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 $?