summaryrefslogtreecommitdiff
path: root/package/busybox/files/network.init
blob: ee70efcbf275786fa2c110561bf855e8436909bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/bin/sh
#PKG busybox
#INIT 40
. /etc/rc.conf
case $1 in
autostart)
	test x"${network:-NO}" = x"NO" && exit 0
	exec sh $0 start
	;;
start)
	[ -f /etc/network/interfaces ] || exit 1
	ifup -a
	;;
autostop|stop)
	ifdown -a
	;;
restart)
	sh $0 stop
	exec sh $0 start
	;;
*)
	echo "Usage: $0 {start | stop | restart}"
	exit 1
	;;
esac
exit $?