From 1d70d03c08a061eff901a65d952526246989181b Mon Sep 17 00:00:00 2001 From: Manuel Munz Date: Wed, 1 Jun 2011 11:56:38 +0000 Subject: [PATCH] libs/core: Allow the use of commands with arguments or of multiple commands for exec in /etc/config/ucitrack --- libs/core/root/sbin/luci-reload | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/libs/core/root/sbin/luci-reload b/libs/core/root/sbin/luci-reload index 24cf76064..4bcac045b 100755 --- a/libs/core/root/sbin/luci-reload +++ b/libs/core/root/sbin/luci-reload @@ -13,10 +13,15 @@ apply_config() { } reload_exec() { - [ -x $2 ] && { - echo "Reloading $1... " - $2 >/dev/null 2>&1 - [ -n "$3" -a "$?" != "$3" ] && echo '!!! Failed to reload' $1 '!!!' + local service="$1" + local ok="$3" + set -- $2 + local cmd="$1"; shift + + [ -x "$cmd" ] && { + echo "Reloading $service... " + ( $cmd "$@" ) 2>/dev/null 1>&2 + [ -n "$ok" -a "$?" != "$ok" ] && echo '!!! Failed to reload' $service '!!!' } } -- 2.11.0