From b34bba25d2da994c3c6768023c76ce22a1e98703 Mon Sep 17 00:00:00 2001 From: Nicolas Thill Date: Mon, 29 Mar 2010 03:58:17 +0000 Subject: base-files: fix shell syntax (prevent error messages when activating initscripts in IB) SVN-Revision: 20571 --- package/base-files/files/etc/rc.common | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'package/base-files/files') 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 "$@" -- cgit v1.2.3