From: Steven Barth Date: Sat, 6 Sep 2008 14:31:17 +0000 (+0000) Subject: One more X-Git-Tag: 0.9.0~1416 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=03e11688ca1678b13b17f29b7a0f3d5809e5ca99;p=oweals%2Fluci.git One more --- diff --git a/libs/uci/root/sbin/luci-reload b/libs/uci/root/sbin/luci-reload index a92c6eb7f..4e0520cd0 100644 --- a/libs/uci/root/sbin/luci-reload +++ b/libs/uci/root/sbin/luci-reload @@ -11,14 +11,14 @@ apply_config() { reload_exec() { [ -x $2 ] && { - echo -n "Reloading $1... " + echo "Reloading $1... " $2 >/dev/null 2>&1 && echo "done." || echo "failed!" } } reload_init() { [ -x /etc/init.d/$2 ] && /etc/init.d/$2 enabled && { - echo -n "Reloading $1... " + echo "Reloading $1... " /etc/init.d/$2 reload >/dev/null 2>&1 && echo "done." || echo "failed!" } }