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