1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-10-06 03:01:18 +02:00
openwrt/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