immortalwrt/package/jsda/luci-app-eqos/files/uci-defaults-eqos
2019-07-02 18:06:49 +08:00

10 lines
154 B
Bash
Executable File

#!/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