]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/mediawiki/providers/site.rb
Qualify property access
[chef.git] / cookbooks / mediawiki / providers / site.rb
index 24b53c8faed420473759fb3b2ef0f9b46f45566f..f637271cad398038b5b33024d3cdfcab00e97fcf 100644 (file)
@@ -62,7 +62,7 @@ action :create do
     not_if do
       ::File.exist?("#{mediawiki_directory}/LocalSettings-install.php")
     end
-    notifies :create, "ruby_block[rename-installer-localsettings]", :immediately
+    notifies :run, "ruby_block[rename-installer-localsettings]", :immediately
   end
 
   execute "#{mediawiki_directory}/maintenance/update.php" do
@@ -108,7 +108,7 @@ action :create do
 
   # Safety catch if git doesn't update but install.php hasn't run
   ruby_block "catch-installer-localsettings-run" do
-    action :create
+    action :run
     block do
       #
     end
@@ -276,6 +276,7 @@ action :create do
 
   mediawiki_extension "SyntaxHighlight_GeSHi" do
     site new_resource.name
+    template "mw-ext-SyntaxHighlight.inc.php.erb"
     update_site false
   end
 
@@ -292,13 +293,13 @@ action :create do
 
   # MediaWiki Language Extension Bundle
   # FIXME: should automatically resolve tag
-  mw_lang_ext_bundle_tag = "2016.10"
+  mw_lang_ext_bundle_tag = "2017.01"
 
   mediawiki_extension "Babel" do
     site new_resource.name
     template "mw-ext-Babel.inc.php.erb"
     # tag mw_lang_ext_bundle_tag
-    reference "740782459d34e756a932ea1ceddde432a1295197"
+    tag mw_lang_ext_bundle_tag
     update_site false
   end