12 lines
186 B
Bash
Executable File
12 lines
186 B
Bash
Executable File
#!/bin/sh
|
|
|
|
uci -q batch <<-EOF >/dev/null
|
|
delete ucitrack.@rclone[-1]
|
|
add ucitrack rclone
|
|
set ucitrack.@rclone[-1].init=rclone
|
|
commit ucitrack
|
|
EOF
|
|
|
|
rm -f /tmp/luci-indexcache
|
|
exit 0
|