mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-27 01:11:14 +00:00
c055b4eb2d
SVN-Revision: 18
11 lines
124 B
Bash
Executable File
11 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
|