mirror of
https://github.com/novatiq/packages.git
synced 2026-07-30 23:33:06 +01:00
New LuCI Application to support privoxy WEB proxy Signed-off-by: Christian Schoenebeck <christian.schoenebeck@gmail.com>
13 lines
241 B
Bash
Executable File
13 lines
241 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# no longer needed for "Save and Apply" to restart privoxy
|
|
# luci-app-privoxy calls /etc/init.d/preivoxy reload
|
|
uci -q batch <<-EOF >/dev/null
|
|
delete ucitrack.@privoxy[-1]
|
|
commit ucitrack
|
|
EOF
|
|
|
|
rm -f /tmp/luci-indexcache
|
|
|
|
exit 0
|