diff options
Diffstat (limited to 'package/aiccu/files/aiccu.init')
-rw-r--r-- | package/aiccu/files/aiccu.init | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/package/aiccu/files/aiccu.init b/package/aiccu/files/aiccu.init deleted file mode 100644 index dabafcf3f0..0000000000 --- a/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 |