diff options
Diffstat (limited to 'openwrt/package/aiccu/files/S51aiccu')
-rwxr-xr-x | openwrt/package/aiccu/files/S51aiccu | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/openwrt/package/aiccu/files/S51aiccu b/openwrt/package/aiccu/files/S51aiccu deleted file mode 100755 index dabafcf3f..000000000 --- a/openwrt/package/aiccu/files/S51aiccu +++ /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 |