mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-15 18:03:30 +00:00
8 lines
148 B
Bash
8 lines
148 B
Bash
#!/bin/sh
|
|
rm -f /tmp/luci-indexcache
|
|
#uci track
|
|
cfg_id=$(uci add ucitrack fogvdn)
|
|
uci set ucitrack.$cfg_id.init="fogvdn"
|
|
uci commit ucitrack
|
|
exit 0
|