forked from Ivasoft/openwrt
packages: sort network related packages into package/network/
SVN-Revision: 33688
This commit is contained in:
47
package/network/config/netifd/files/etc/init.d/network
Executable file
47
package/network/config/netifd/files/etc/init.d/network
Executable file
@@ -0,0 +1,47 @@
|
||||
#!/bin/sh /etc/rc.common
|
||||
|
||||
START=20
|
||||
STOP=90
|
||||
|
||||
SERVICE_DAEMONIZE=1
|
||||
SERVICE_WRITE_PID=1
|
||||
|
||||
start() {
|
||||
stop
|
||||
[ -e /proc/sys/kernel/core_pattern ] && {
|
||||
ulimit -c unlimited
|
||||
echo '/tmp/%e.%p.%s.%t.core' > /proc/sys/kernel/core_pattern
|
||||
}
|
||||
service_start /sbin/netifd
|
||||
|
||||
setup_switch() { return 0; }
|
||||
|
||||
include /lib/network
|
||||
setup_switch
|
||||
|
||||
sleep 1
|
||||
|
||||
/sbin/wifi down
|
||||
/sbin/wifi up
|
||||
}
|
||||
|
||||
restart() {
|
||||
ifdown -a
|
||||
sleep 1
|
||||
start
|
||||
}
|
||||
|
||||
shutdown() {
|
||||
ifdown -a
|
||||
stop
|
||||
}
|
||||
|
||||
stop() {
|
||||
service_stop /sbin/netifd
|
||||
}
|
||||
|
||||
reload() {
|
||||
ubus call network reload
|
||||
/sbin/wifi down
|
||||
/sbin/wifi up
|
||||
}
|
||||
Reference in New Issue
Block a user