From: Nicolas Thill Date: Thu, 19 May 2005 05:25:13 +0000 (+0000) Subject: Fix aiccu init-script X-Git-Tag: reboot~32776 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=8235a2e3ce295bc69388b4f22f0b53d6b33c5c8d;p=oweals%2Fopenwrt.git Fix aiccu init-script SVN-Revision: 946 --- diff --git a/openwrt/package/aiccu/files/S51aiccu b/openwrt/package/aiccu/files/S51aiccu deleted file mode 100755 index dabafcf3f0..0000000000 --- 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 diff --git a/openwrt/package/aiccu/files/aiccu b/openwrt/package/aiccu/files/aiccu new file mode 100644 index 0000000000..dabafcf3f0 --- /dev/null +++ b/openwrt/package/aiccu/files/aiccu @@ -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