From: Steven Barth Date: Sat, 6 Sep 2008 16:27:40 +0000 (+0000) Subject: Cosemtical changes X-Git-Tag: 0.9.0~1409 X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fluci.git;a=commitdiff_plain;h=3001586c045f24e295c0f2b553e3b67a70e98286;hp=38bdb5f504d93efe16fdb2e17ad2ebdab7307277 Cosemtical changes --- diff --git a/libs/uci/root/sbin/luci-reload b/libs/uci/root/sbin/luci-reload index 4e0520cd0..cc621b2e9 100755 --- a/libs/uci/root/sbin/luci-reload +++ b/libs/uci/root/sbin/luci-reload @@ -12,14 +12,14 @@ apply_config() { reload_exec() { [ -x $2 ] && { echo "Reloading $1... " - $2 >/dev/null 2>&1 && echo "done." || echo "failed!" + $2 >/dev/null 2>&1 || echo "!!! Failed to reload $1 !!!" } } reload_init() { [ -x /etc/init.d/$2 ] && /etc/init.d/$2 enabled && { echo "Reloading $1... " - /etc/init.d/$2 reload >/dev/null 2>&1 && echo "done." || echo "failed!" + /etc/init.d/$2 reload >/dev/null 2>&1 || echo "!!! Failed to reload $1 !!!" } } @@ -27,5 +27,6 @@ config_load ucitrack for i in $* do - config_foreach apply_config $i + config_foreach apply_config $i $i + echo "done." done \ No newline at end of file