mirror of
https://github.com/Telecominfraproject/wlan-ucentral-schema.git
synced 2026-03-20 03:41:53 +00:00
16 lines
272 B
Bash
Executable File
16 lines
272 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. /lib/functions.sh
|
|
|
|
iface_del() {
|
|
uci delete wireless.$1
|
|
}
|
|
|
|
rm /etc/config/wireless
|
|
wifi config
|
|
config_load wireless
|
|
config_foreach iface_del wifi-iface
|
|
config_foreach iface_del wifi-vlan
|
|
uci commit wireless
|
|
cp /etc/config/wireless /tmp/config-shadow/
|