mirror of
https://github.com/Ysurac/openmptcprouter-feeds.git
synced 2025-02-13 19:11:51 +00:00
12 lines
No EOL
220 B
Bash
Executable file
12 lines
No EOL
220 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if [ "$(uci -q openmptcprouter.latest_versions)" = "" ]; then
|
|
uci -q show wireless.default_radio0 && {
|
|
uci -q batch <<-EOF >/dev/null
|
|
delete wireless.default_radio0
|
|
commit wireless
|
|
EOF
|
|
}
|
|
fi
|
|
|
|
exit 0 |