diff options
author | Steven Barth <steven@midlink.org> | 2008-09-06 14:31:17 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-09-06 14:31:17 +0000 |
commit | 03e11688ca1678b13b17f29b7a0f3d5809e5ca99 (patch) | |
tree | 9884ea24bf05555eeafe2aa2e223ae345b9c9be3 /libs/uci/root | |
parent | f2ae44a2842686bb023168ec2e535ef9ac8c7372 (diff) |
One more
Diffstat (limited to 'libs/uci/root')
-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!" } } |