X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/9949b7666e55675ff8e962fc7c44140b80b21125..38242c2ddcec93702f548cc9f682a6db22880f6c:/cookbooks/civicrm/recipes/default.rb?ds=sidebyside diff --git a/cookbooks/civicrm/recipes/default.rb b/cookbooks/civicrm/recipes/default.rb index cadc73212..7252f61f9 100644 --- a/cookbooks/civicrm/recipes/default.rb +++ b/cookbooks/civicrm/recipes/default.rb @@ -20,7 +20,11 @@ include_recipe "wordpress" include_recipe "mysql" -package "wkhtmltopdf" +package %w[ + rsync + unzip + wkhtmltopdf +] cache_dir = Chef::Config[:file_cache_path] @@ -46,7 +50,7 @@ end wordpress_theme "osmblog-wp-theme" do site "join.osmfoundation.org" - repository "git://github.com/harry-wood/osmblog-wp-theme.git" + repository "https://github.com/harry-wood/osmblog-wp-theme.git" end wordpress_plugin "registration-honeypot" do @@ -56,6 +60,7 @@ end wordpress_plugin "sitepress-multilingual-cms" do site "join.osmfoundation.org" repository "https://git.openstreetmap.org/private/sitepress-multilingual-cms.git" + not_if { ENV["TEST_KITCHEN"] } end wordpress_plugin "contact-form-7" do @@ -91,7 +96,7 @@ end execute "#{cache_dir}/civicrm-#{civicrm_version}-wordpress.zip" do action :nothing - command "unzip -qq #{cache_dir}/civicrm-#{civicrm_version}-wordpress.zip" + command "unzip -o -qq #{cache_dir}/civicrm-#{civicrm_version}-wordpress.zip" cwd "/opt/civicrm-#{civicrm_version}" user "wordpress" group "wordpress" @@ -135,6 +140,7 @@ node[:civicrm][:extensions].each_value do |details| action :sync repository details[:repository] revision details[:revision] + depth 1 user "wordpress" group "wordpress" end