source "squid.conf.erb"
owner "root"
group "root"
- mode 0o644
+ mode "644"
end
directory "/etc/squid/squid.conf.d" do
owner "root"
group "root"
- mode 0o755
+ mode "755"
end
Array(node[:squid][:cache_dir]).each do |cache_dir|
directory cache_dir do
owner "proxy"
group "proxy"
- mode 0o750
+ mode "750"
recursive true
notifies :restart, "service[squid]"
end
address_families = %w[AF_UNIX AF_INET AF_INET6]
+file "/etc/systemd/system/squid.service" do
+ action :delete
+end
+
+file "/etc/logrotate.d/squid.dpkg-dist" do
+ action :delete
+end
+
systemd_service "squid" do
- description "Squid caching proxy"
- after ["network.target", "nss-lookup.target"]
- type "forking"
+ dropin "chef"
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]
+ action :enable
subscribes :restart, "systemd_service[squid]"
subscribes :restart, "template[/etc/squid/squid.conf]"
subscribes :reload, "template[/etc/resolv.conf]"
end
+notify_group "squid-start" do
+ action :run
+ notifies :start, "service[squid]"
+end
+
service "squid-restart" do
service_name "squid"
action :restart