mirror of
https://github.com/openwrt/luci.git
synced 2025-02-06 21:39:52 +00:00
The 'ucitrack' file is not available anymore this changes are not needed. Therefore, this 'uci-defaults' script is deleted. Signed-off-by: Florian Eckert <fe@dev.tdt.de>
11 lines
229 B
Bash
Executable File
11 lines
229 B
Bash
Executable File
#!/bin/sh
|
|
|
|
uci -q get mwan3.globals >/dev/null || {
|
|
uci -q add mwan3 globals >/dev/null
|
|
uci -q rename mwan3.@globals[-1]="globals" >/dev/null
|
|
uci -q set mwan3.globals.local_source="none" >/dev/null
|
|
uci commit mwan3
|
|
}
|
|
|
|
exit 0
|