2 # Cookbook Name:: squid
 
   5 # Copyright 2011, OpenStreetMap Foundation
 
   7 # Licensed under the Apache License, Version 2.0 (the "License");
 
   8 # you may not use this file except in compliance with the License.
 
   9 # You may obtain a copy of the License at
 
  11 #     https://www.apache.org/licenses/LICENSE-2.0
 
  13 # Unless required by applicable law or agreed to in writing, software
 
  14 # distributed under the License is distributed on an "AS IS" BASIS,
 
  15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
  16 # See the License for the specific language governing permissions and
 
  17 # limitations under the License.
 
  20 if node[:squid][:version] == "3"
 
  21   apt_package "squid" do
 
  25   apt_package "squid-common" do
 
  29   apt_package "squid" do
 
  31     only_if "dpkg-query -W squid | fgrep -q 2."
 
  34   apt_package "squid-common" do
 
  36     only_if "dpkg-query -W squid-common | fgrep -q 2."
 
  39   file "/store/squid/coss-01" do
 
  44   package "squidclient" do
 
  52 template "/etc/squid/squid.conf" do
 
  53   source "squid.conf.erb"
 
  59 directory "/etc/squid/squid.conf.d" do
 
  65 if node[:squid][:cache_dir] =~ /^coss (\S+) /
 
  66   cache_dir = File.dirname(Regexp.last_match(1))
 
  67 elsif node[:squid][:cache_dir] =~ /^\S+ (\S+) /
 
  68   cache_dir = Regexp.last_match(1)
 
  71 directory cache_dir do
 
  78 systemd_tmpfile "/var/run/squid" do
 
  85 systemd_service "squid" do
 
  86   description "Squid caching proxy"
 
  87   after ["network.target", "nss-lookup.target"]
 
  90   exec_start_pre "/usr/sbin/squid -N -z"
 
  91   exec_start "/usr/sbin/squid -Y"
 
  92   exec_reload "/usr/sbin/squid -k reconfigure"
 
  93   exec_stop "/usr/sbin/squid -k shutdown"
 
 103   action [:enable, :start]
 
 104   subscribes :restart, "systemd_service[squid]"
 
 105   subscribes :restart, "directory[#{cache_dir}]"
 
 106   subscribes :reload, "template[/etc/squid/squid.conf]"
 
 107   subscribes :reload, "template[/etc/resolv.conf]"
 
 110 log "squid-restart" do
 
 111   message "Restarting squid due to counter wraparound"
 
 112   notifies :restart, "service[squid]"
 
 114     IO.popen(["squidclient", "--host=127.0.0.1", "--port=80", "mgr:counters"]) do |io|
 
 115       io.each.grep(/^[a-z][a-z_.]+ = -[0-9]+$/).count.positive?
 
 120 munin_plugin "squid_cache"
 
 121 munin_plugin "squid_delay_pools"
 
 122 munin_plugin "squid_delay_pools_noreferer"
 
 123 munin_plugin "squid_times"
 
 124 munin_plugin "squid_icp"
 
 125 munin_plugin "squid_objectsize"
 
 126 munin_plugin "squid_requests"
 
 127 munin_plugin "squid_traffic"