luci-app-simple-adblock: bumped version number to match main package Signed-off-by: Stan Grishin <stangri@melmac.net>
10 lines
217 B
Bash
10 lines
217 B
Bash
#!/bin/sh
|
|
uci -q batch <<-EOF >/dev/null
|
|
delete ucitrack.@simple-adblock[-1]
|
|
add ucitrack simple-adblock
|
|
set ucitrack.@simple-adblock[-1].init=simple-adblock
|
|
commit ucitrack
|
|
EOF
|
|
|
|
rm -f /tmp/luci-indexcache
|
|
exit 0
|