#
-# Cookbook Name:: squid
+# Cookbook:: squid
# Recipe:: default
#
-# Copyright 2011, OpenStreetMap Foundation
+# Copyright:: 2011, OpenStreetMap Foundation
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# limitations under the License.
#
-if node[:squid][:version] == "3"
+if node[:squid][:version] >= 3
apt_package "squid" do
action :unlock
end
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"]
private_devices true
protect_system "full"
protect_home true
+ restrict_address_families address_families
restart "on-failure"
timeout_sec 0
end
service "squid" do
action [:enable, :start]
subscribes :restart, "systemd_service[squid]"
- subscribes :reload, "template[/etc/squid/squid.conf]"
+ subscribes :restart, "template[/etc/squid/squid.conf]"
subscribes :reload, "template[/etc/resolv.conf]"
end
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.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
end