mirror of
https://github.com/Ysurac/openmptcprouter-feeds.git
synced 2025-02-15 03:51:51 +00:00
10 lines
No EOL
149 B
Bash
Executable file
10 lines
No EOL
149 B
Bash
Executable file
#!/bin/sh
|
|
|
|
uci -q show wireless.default_radio0 && {
|
|
uci -q batch <<-EOF >/dev/null
|
|
delete wireless.default_radio0
|
|
commit wireless
|
|
EOF
|
|
}
|
|
|
|
exit 0 |