From 03e11688ca1678b13b17f29b7a0f3d5809e5ca99 Mon Sep 17 00:00:00 2001 From: Steven Barth Date: Sat, 6 Sep 2008 14:31:17 +0000 Subject: [PATCH] One more --- libs/uci/root/sbin/luci-reload | 4 ++-- 1 file 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!" } } -- 2.25.1