mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-07-23 17:47:28 +08:00
14 lines
198 B
Bash
Executable File
14 lines
198 B
Bash
Executable File
#!/bin/sh
|
|
|
|
uci -q batch <<-EOF >/dev/null
|
|
delete ucitrack.@sfe[-1]
|
|
add ucitrack sfe
|
|
set ucitrack.@sfe[-1].init=sfe
|
|
commit ucitrack
|
|
EOF
|
|
|
|
/etc/init.d/sfe enable
|
|
|
|
rm -f /tmp/luci-indexcache
|
|
exit 0
|