openwrt-packages/luci-app-eqos/root/etc/uci-defaults/luci-eqos

10 lines
154 B
Plaintext
Raw Normal View History

2022-04-11 16:32:02 +08:00
#!/bin/sh
uci -q get ucitrack.@eqos[0] > /dev/null || {
uci add ucitrack eqos > /dev/null
uci set ucitrack.@eqos[0].init=eqos
uci commit
}
exit 0