blob: f7676774a174668d56d9fa6a9a0242dd15950663 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
uci -q batch <<-EOF >/dev/null
delete ucitrack.@travelmate[-1]
add ucitrack travelmate
set ucitrack.@travelmate[-1].init=travelmate
commit ucitrack
EOF
rm -f /tmp/luci-indexcache
exit 0
|