diff options
Diffstat (limited to 'libs/uci/root/sbin/luci-reload')
-rw-r--r-- | libs/uci/root/sbin/luci-reload | 4 |
1 files changed, 2 insertions, 2 deletions
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!" } } |