1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-11-10 09:34:04 +02:00
openwrt-xburst/root/etc/init.d/S40network

11 lines
124 B
Plaintext
Raw Normal View History

#!/bin/sh
. /etc/functions.sh
case "$1" in
start|restart)
ifup lan
ifup wan
ifup wifi
wifi up
;;
esac