X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/8ee7a7b1bedbd7772b663fcd9d5507c8cd8d578b..571e5982cc82c4fbefff0d463895a029a68921fe:/cookbooks/civicrm/recipes/default.rb diff --git a/cookbooks/civicrm/recipes/default.rb b/cookbooks/civicrm/recipes/default.rb index dd6bd8342..2aed4f64f 100644 --- a/cookbooks/civicrm/recipes/default.rb +++ b/cookbooks/civicrm/recipes/default.rb @@ -91,6 +91,16 @@ wordpress_plugin "host-webfonts-local" do site "supporting.openstreetmap.org" end +wordpress_theme "morden" do + site "supporting.openstreetmap.org" + repository "https://public-api.wordpress.com/rest/v1/themes/download/morden.zip" +end + +wordpress_theme "varia" do + site "supporting.openstreetmap.org" + repository "https://public-api.wordpress.com/rest/v1/themes/download/varia.zip" +end + civicrm_version = node[:civicrm][:version] civicrm_directory = "/srv/supporting.openstreetmap.org/wp-content/plugins/civicrm" @@ -206,17 +216,29 @@ settings = edit_file "#{civicrm_directory}/civicrm/templates/CRM/common/civicrm. line.gsub!(/%%credKeys%%/, cred_keys) line.gsub!(/%%signKeys%%/, sign_keys) line.gsub!(%r{// *define\('CIVICRM_CMSDIR', '/path/to/install/root/'\);}, "define('CIVICRM_CMSDIR', '/srv/supporting.openstreetmap.org');") + # Don't recompile smarty templates on every call https://docs.civicrm.org/sysadmin/en/latest/setup/optimizations/#disable-compile-check + line.gsub!(%r{// define\('CIVICRM_TEMPLATE_COMPILE_CHECK', FALSE\);}, "define('CIVICRM_TEMPLATE_COMPILE_CHECK', FALSE);") line end -file "#{civicrm_directory}/civicrm.settings.php" do +directory "/srv/supporting.openstreetmap.org/wp-content/uploads/civicrm" do + owner "www-data" + group "www-data" + mode "755" +end + +file "/srv/supporting.openstreetmap.org/wp-content/uploads/civicrm/civicrm.settings.php" do owner "wordpress" group "wordpress" mode "644" content settings end +file "#{civicrm_directory}/civicrm.settings.php" do + action :delete +end + systemd_service "osmf-crm-jobs" do description "Run CRM jobs" exec_start "/usr/bin/php #{civicrm_directory}/civicrm/bin/cli.php -s supporting.openstreetmap.org -u batch -p \"#{passwords['batch']}\" -e Job -a execute"