10 lines
174 B
Plaintext
10 lines
174 B
Plaintext
![]() |
#!/bin/sh
|
||
|
|
||
|
uci -q batch <<-EOF >/dev/null
|
||
|
delete ucitrack.@autoupdate[-1]
|
||
|
add ucitrack autoupdate
|
||
|
set ucitrack.@autoupdate[-1].init=autoupdate
|
||
|
commit ucitrack
|
||
|
EOF
|
||
|
|
||
|
exit 0
|