-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]"
+end
+
+systemd_tmpfile "/var/run/squid" do
+ type "d"
+ owner "proxy"
+ group "proxy"
+ mode "0755"
+end
+
+address_families = %w[AF_UNIX AF_INET AF_INET6]
+
+systemd_service "squid" do
+ description "Squid caching proxy"
+ after ["network.target", "nss-lookup.target"]
+ type "forking"
+ limit_nofile 98304
+ exec_start_pre "/usr/sbin/squid --foreground -z"
+ exec_start "/usr/sbin/squid -YC"
+ exec_reload "/bin/kill -HUP $MAINPID"
+ pid_file "/var/run/squid.pid"
+ private_tmp true
+ private_devices true
+ protect_system "full"
+ protect_home true
+ restrict_address_families address_families
+ restart "always"
+ kill_mode "mixed"
+end
+
+service "squid" do
+ action [:enable, :start]
+ subscribes :restart, "systemd_service[squid]"
+ subscribes :restart, "template[/etc/squid/squid.conf]"
+ subscribes :reload, "template[/etc/resolv.conf]"
+end
+
+service "squid-restart" do
+ service_name "squid"
+ action :restart
+ only_if do
+ IO.popen(["squidclient", "--host=127.0.0.1", "--port=3128", "mgr:counters"]) do |io|
+ io.each.grep(/^[a-z][a-z_.]+ = -[0-9]+$/).count.positive?
+ end