From: nico Date: Mon, 29 Mar 2010 03:58:17 +0000 (+0000) Subject: [package] base-files: fix shell syntax (prevent error messages when activating initsc... X-Git-Url: http://git.ozo.com/?a=commitdiff_plain;ds=sidebyside;h=e0faab81aad968bcaa594f40c44e70bd2cc91a83;hp=e4c6bd13192fd179bd808d36bbbd3462a8b029e0;p=openwrt-10.03%2F.git [package] base-files: fix shell syntax (prevent error messages when activating initscripts in IB) git-svn-id: svn://svn.openwrt.org/openwrt/trunk@20571 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/package/base-files/files/etc/rc.common b/package/base-files/files/etc/rc.common index 2b7bf5a11..072f14354 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 "$@"