2017-07-13 16:09:42 +03:00
|
|
|
#!/usr/bin/env ssm
|
2014-04-04 15:40:45 +04:00
|
|
|
|
|
|
|
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
|
|
|
|
2017-07-13 16:09:42 +03:00
|
|
|
pre_restart() {
|
2015-09-04 16:47:37 +03:00
|
|
|
"$service_command" --config-test "${service_args[@]}"
|
2014-04-04 15:40:45 +04:00
|
|
|
}
|