mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2026-02-18 08:11:13 +01:00
10 lines
124 B
Bash
Executable file
10 lines
124 B
Bash
Executable file
#!/bin/sh
|
|
. /etc/functions.sh
|
|
case "$1" in
|
|
start|restart)
|
|
ifup lan
|
|
ifup wan
|
|
ifup wifi
|
|
wifi up
|
|
;;
|
|
esac
|