mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-02-10 13:31:56 +02:00
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
|