0
0
mirror of https://github.com/openwrt/luci.git synced 2025-02-06 21:39:52 +00:00
Florian Eckert a69e3874d3 luci-app-mwan3: remove uci-defaults for ucitrack handling
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>
2024-04-11 16:15:52 +02:00

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