12 lines
229 B
Plaintext
12 lines
229 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
uci -q batch <<-EOF >/dev/null
|
||
|
delete citrack.@freifunk_p2pblock[-1]
|
||
|
add ucitrack freifunk_p2pblock
|
||
|
set ucitrack.@freifunk_p2pblock[-1].init=freifunk-p2pblock
|
||
|
commit ucitrack
|
||
|
EOF
|
||
|
|
||
|
rm -f /tmp/luci-indexcache
|
||
|
exit 0
|