1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-08-22 10:12:24 +03:00
openwrt-xburst/package/netifd/files/etc/init.d/network
nbd 1cf19d8a82 netifd: call /sbin/wifi up on /etc/init.d/network reload
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31941 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-05-28 14:22:42 +00:00

46 lines
525 B
Bash
Executable File

#!/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 up
}
restart() {
ifdown -a
sleep 1
start
}
shutdown() {
ifdown -a
stop
}
stop() {
service_stop /sbin/netifd
}
reload() {
ubus call network reload
/sbin/wifi up
}