mirror of
https://github.com/kenzok8/openwrt-packages.git
synced 2025-11-01 08:18:52 +08:00
12 lines
174 B
Bash
Executable File
12 lines
174 B
Bash
Executable File
#!/bin/sh
|
|
|
|
uci -q batch <<-EOF >/dev/null
|
|
delete ucitrack.@alist[-1]
|
|
add ucitrack alist
|
|
set ucitrack.@alist[-1].init=alist
|
|
commit ucitrack
|
|
EOF
|
|
|
|
rm -rf /tmp/luci-*
|
|
exit 0
|