12 lines
212 B
Plaintext
12 lines
212 B
Plaintext
![]() |
#!/bin/sh
|
||
|
|
||
|
uci -q batch <<-EOF >/dev/null
|
||
|
delete ucitrack.@lucky[-1]
|
||
|
add ucitrack lucky
|
||
|
set ucitrack.@lucky[-1].init=lucky
|
||
|
commit ucitrack
|
||
|
EOF
|
||
|
|
||
|
rm -rf /tmp/luci*
|
||
|
exit 0
|