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
subscribes :reload, "template[/etc/resolv.conf]"
end
+log "squid-restart" do
+ message "Restarting squid due to counter wraparound"
+ 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
+ end
+ end
+end
+
munin_plugin "squid_cache"
munin_plugin "squid_delay_pools"
munin_plugin "squid_delay_pools_noreferer"