summaryrefslogblamecommitdiffstats
path: root/fs/skeleton/etc/init.d/S40network
blob: ad6d250b5bbc1f26869960578e1025c8c69386eb (plain) (tree)
1
2
3
4
5
6
7
8
9




                       

            

                                  

          

                                     

                 

                  







                                              
#!/bin/sh
#
# Start the network....
#

case "$1" in
  start)
 	echo "Starting network..."
	/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 $?