diff options
author | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-05-19 05:25:13 +0000 |
---|---|---|
committer | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-05-19 05:25:13 +0000 |
commit | 06d28725dadee72314e8f2b8c4fac0ed872f418c (patch) | |
tree | f4baa25bab80afaa48681f7f3e9e319ce23745fc /openwrt/package/aiccu/files/S51aiccu | |
parent | ea6b461925bf0cbfc67ab8034c2e922c6bdee65e (diff) |
Fix aiccu init-script
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@946 3c298f89-4303-0410-b956-a3cf2f4a3e73
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 |