X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/514c99b49acbac6fd3b5b0ef6c8af648c0fc67f5..dfb7ec85764008947011173bf97372bb2fa555e0:/cookbooks/squid/recipes/default.rb diff --git a/cookbooks/squid/recipes/default.rb b/cookbooks/squid/recipes/default.rb index 12a11119a..2d0c3efe3 100644 --- a/cookbooks/squid/recipes/default.rb +++ b/cookbooks/squid/recipes/default.rb @@ -1,8 +1,8 @@ # -# 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. @@ -17,7 +17,7 @@ # limitations under the License. # -if node[:squid][:version] == "3" +if node[:squid][:version] >= 3 apt_package "squid" do action :unlock end @@ -62,17 +62,20 @@ directory "/etc/squid/squid.conf.d" do mode 0o755 end -if node[:squid][:cache_dir] =~ /^coss (\S+) / - cache_dir = File.dirname(Regexp.last_match(1)) -elsif node[:squid][:cache_dir] =~ /^\S+ (\S+) / - cache_dir = Regexp.last_match(1) -end +Array(node[:squid][:cache_dir]).each do |cache_dir| + if cache_dir =~ /^coss (\S+) / + cache_dir = File.dirname(Regexp.last_match(1)) + elsif cache_dir =~ /^\S+ (\S+) / + cache_dir = Regexp.last_match(1) + end -directory cache_dir do - owner "proxy" - group "proxy" - mode 0o750 - recursive true + directory cache_dir do + owner "proxy" + group "proxy" + mode 0o750 + recursive true + notifies :restart, "service[squid]" + end end systemd_tmpfile "/var/run/squid" do @@ -82,6 +85,8 @@ systemd_tmpfile "/var/run/squid" do 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"] @@ -95,6 +100,7 @@ systemd_service "squid" do private_devices true protect_system "full" protect_home true + restrict_address_families address_families restart "on-failure" timeout_sec 0 end @@ -102,7 +108,6 @@ end service "squid" do action [:enable, :start] subscribes :restart, "systemd_service[squid]" - subscribes :restart, "directory[#{cache_dir}]" subscribes :reload, "template[/etc/squid/squid.conf]" subscribes :reload, "template[/etc/resolv.conf]" end @@ -111,7 +116,7 @@ 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.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