2014-04-04 15:40:45 +04:00
|
|
|
#!/usr/bin/env watchman
|
|
|
|
|
|
|
|
privoxy_username='privoxy'
|
|
|
|
privoxy_configfile='/etc/privoxy/config'
|
|
|
|
|
2014-08-02 21:35:27 +04:00
|
|
|
#service_respawn='true'
|
2014-04-04 15:40:45 +04:00
|
|
|
service_command='/usr/bin/privoxy'
|
2015-09-04 16:47:37 +03:00
|
|
|
service_args=( --no-daemon --user "$privoxy_username" "$privoxy_configfile" )
|
2014-04-04 15:40:45 +04:00
|
|
|
|
|
|
|
privoxy::configtest() {
|
2015-09-04 16:47:37 +03:00
|
|
|
"$service_command" --config-test "${service_args[@]}"
|
2014-04-04 15:40:45 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
restart() {
|
|
|
|
privoxy::configtest || {
|
|
|
|
watchman.err "Config test failed, not restarting!"
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
watchman.stop
|
|
|
|
watchman.start
|
|
|
|
}
|