1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-15 19:35:52 +03:00
openwrt-xburst/package/netifd/files/etc/init.d/network

21 lines
200 B
Plaintext
Raw Normal View History

#!/bin/sh /etc/rc.common
START=40
STOP=90
start() {
setup_switch() { return 0; }
include /lib/network
setup_switch
ubus call network reload
}
restart() {
start
}
stop() {
/sbin/ifdown -a
}