buildrootschalter/system/skeleton/etc/init.d/S40network

26 lines
291 B
Bash
Executable File

#!/bin/sh
#
# Start the network....
#
case "$1" in
start)
echo "Starting network..."
sleep 3; /sbin/ifup -a
;;
stop)
echo -n "Stopping network..."
/sbin/ifdown -a
;;
restart|reload)
"$0" stop
"$0" start
;;
*)
echo "Usage: $0 {start|stop|restart}"
exit 1
esac
exit $?