- service "squid" do
- provider Chef::Provider::Service::Systemd
- action [:enable, :start]
- supports :status => true, :restart => true, :reload => true
- subscribes :restart, "template[/etc/systemd/system/squid.service]"
- subscribes :reload, "template[/etc/squid/squid.conf]"
- subscribes :restart, "template[/etc/default/squid]"
- subscribes :reload, "template[/etc/resolv.conf]"
- end
-else
- service "squid" do
- provider Chef::Provider::Service::Upstart
- action [:enable, :start]
- supports :status => true, :restart => true, :reload => true
- subscribes :reload, "template[/etc/squid/squid.conf]"
- subscribes :restart, "template[/etc/default/squid]"
- subscribes :reload, "template[/etc/resolv.conf]"
+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.positive?
+ end