From 3001586c045f24e295c0f2b553e3b67a70e98286 Mon Sep 17 00:00:00 2001 From: Steven Barth Date: Sat, 6 Sep 2008 16:27:40 +0000 Subject: [PATCH] Cosemtical changes --- libs/uci/root/sbin/luci-reload | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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 -- 2.11.0