]> git.openstreetmap.org Git - chef.git/commitdiff
Allow wordpress themes to be installed from zip
authorGuillaume Rischard <git@stereo.lu>
Tue, 23 Apr 2024 21:06:10 +0000 (17:06 -0400)
committerGitHub <noreply@github.com>
Tue, 23 Apr 2024 21:06:10 +0000 (17:06 -0400)
cookbooks/wordpress/resources/theme.rb

index 5a402f6d170bf26e0848d7a363477d5c783f1e31..2c4ceda4e5d1947fb048762512818c8b63ae4415 100644 (file)
@@ -52,6 +52,22 @@ action :create do
         user node[:wordpress][:user]
         group node[:wordpress][:group]
       end
+    elsif theme_repository.end_with?(".zip")
+      zip_path = "#{Chef::Config[:file_cache_path]}/#{new_resource.theme}.zip"
+
+      remote_file zip_path do
+        source theme_repository
+        action :create
+      end
+
+      archive_file zip_path do
+        destination theme_directory
+        action :nothing
+        overwrite true
+        group node[:wordpress][:group]
+        owner node[:wordpress][:user]
+        subscribes :extract, "remote_file[#{zip_path}]", :immediately
+      end
     else
       subversion theme_directory do
         action :sync