exec_start "/usr/sbin/squid -N $SQUID_ARGS"
exec_reload "/usr/sbin/squid -k reconfigure"
exec_stop "/usr/sbin/squid -k shutdown"
+ private_tmp true
+ private_devices true
+ protect_system "full"
+ protect_home true
+ no_new_privileges true
restart "on-failure"
timeout_sec 0
end
notifies :restart, "service[squid]"
only_if do
IO.popen(["squidclient", "--host=127.0.0.1", "--port=80", "mgr:counters"]) do |io|
- io.each.grep(/^[a-z][a-z_.]+ = -[0-9]+$/).count > 0
+ io.each.grep(/^[a-z][a-z_.]+ = -[0-9]+$/).count.positive?
end
end
end