aboutsummaryrefslogtreecommitdiffstats
path: root/openwrt/package/aiccu/files/aiccu.init
diff options
context:
space:
mode:
Diffstat (limited to 'openwrt/package/aiccu/files/aiccu.init')
-rw-r--r--openwrt/package/aiccu/files/aiccu.init21
1 files changed, 0 insertions, 21 deletions
diff --git a/openwrt/package/aiccu/files/aiccu.init b/openwrt/package/aiccu/files/aiccu.init
deleted file mode 100644
index dabafcf3f0..0000000000
--- a/openwrt/package/aiccu/files/aiccu.init
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/bin/sh
-
-case "$1" in
- start)
- aiccu start
- ;;
-
- stop)
- aiccu stop
- aiccu stop
- ;;
-
- restart)
- $0 stop
- $0 start
- ;;
- *)
- echo "Usage: $0 {start|stop|restart}"
- exit 1
- ;;
-esac