]> git.openstreetmap.org Git - chef.git/commitdiff
Defer creation of the parsoid config to the end of the run
authorTom Hughes <tom@compton.nu>
Sat, 1 Aug 2020 15:56:15 +0000 (16:56 +0100)
committerTom Hughes <tom@compton.nu>
Sat, 1 Aug 2020 15:57:24 +0000 (16:57 +0100)
cookbooks/mediawiki/recipes/default.rb

index 2f94377603cf7f86df63c9af4abe2b300788b61c..77f956b69fd1c7b21e4ac8e7d5ef6f4c055bc17b 100644 (file)
@@ -73,12 +73,18 @@ file "/etc/mediawiki/parsoid/settings.js" do
 end
 
 template "/etc/mediawiki/parsoid/config.yaml" do
+  action :nothing
   source "parsoid-config.yaml.erb"
   owner "root"
   group "root"
   mode "644"
 end
 
+notify_group "parsoid-config" do
+  action :run
+  notifies :create, "template[/etc/mediawiki/parsoid/config.yaml]"
+end
+
 service "parsoid" do
   action [:enable]
   supports :status => false, :restart => true, :reload => false