diff options
author | Nicolas Thill <nico@openwrt.org> | 2010-03-29 03:58:17 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2010-03-29 03:58:17 +0000 |
commit | b34bba25d2da994c3c6768023c76ce22a1e98703 (patch) | |
tree | 2a737fdbac8c62677496dabaecc144a26ea7af8b /package/base-files/files/etc/rc.common | |
parent | e10df8d2b5f0422eb49d856fc5064d7975c8e6f0 (diff) | |
download | upstream-b34bba25d2da994c3c6768023c76ce22a1e98703.tar.gz upstream-b34bba25d2da994c3c6768023c76ce22a1e98703.tar.bz2 upstream-b34bba25d2da994c3c6768023c76ce22a1e98703.zip |
base-files: fix shell syntax (prevent error messages when activating initscripts in IB)
SVN-Revision: 20571
Diffstat (limited to 'package/base-files/files/etc/rc.common')
-rwxr-xr-x | package/base-files/files/etc/rc.common | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/base-files/files/etc/rc.common b/package/base-files/files/etc/rc.common index 2b7bf5a110..072f143549 100755 --- a/package/base-files/files/etc/rc.common +++ b/package/base-files/files/etc/rc.common @@ -74,5 +74,5 @@ EOF ALL_COMMANDS="start stop reload restart boot shutdown enable disable enabled depends ${EXTRA_COMMANDS}" list_contains ALL_COMMANDS "$action" || action=help -[ "$action" == reload ] && action='eval reload "$@" || restart "$@" && :' +[ "$action" = "reload" ] && action='eval reload "$@" || restart "$@" && :' $action "$@" |