]> git.openstreetmap.org Git - chef.git/commitdiff
Delay trying to start squid until the end of the run
authorTom Hughes <tom@compton.nu>
Tue, 23 Jun 2020 21:37:44 +0000 (22:37 +0100)
committerTom Hughes <tom@compton.nu>
Tue, 23 Jun 2020 21:40:43 +0000 (22:40 +0100)
This ensures that all config fragments have been updated before
we try and start it, allowing recovery from breakage.

cookbooks/squid/recipes/default.rb

index eb3876428f01a5ae97bb7209b126be5efe735b25..ff2a6a4257079f95c691ef7a21c0c5eb83a29f15 100644 (file)
@@ -106,12 +106,17 @@ systemd_service "squid" do
 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