diff options
-rwxr-xr-x | rc.d/init.d/network | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rc.d/init.d/network b/rc.d/init.d/network index a8deed30..51582bae 100755 --- a/rc.d/init.d/network +++ b/rc.d/init.d/network @@ -236,14 +236,14 @@ status) echo $"Currently active devices:" echo $(/sbin/ip -o link show up | awk -F ": " '{ print $2 }') ;; -restart|reload|force-reload) +restart|force-reload) cd "$CWD" $0 stop $0 start rc=$? ;; *) - echo $"Usage: $0 {start|stop|status|restart|reload|force-reload}" + echo $"Usage: $0 {start|stop|status|restart|force-reload}" exit 2 esac |