X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/bfff0526c5efe1ed1afea101806b3ade1cdf1f5b..5919a0168e927c655ce23acc885413864f0ebfcf:/cookbooks/civicrm/recipes/default.rb diff --git a/cookbooks/civicrm/recipes/default.rb b/cookbooks/civicrm/recipes/default.rb index 27875bead..382cb53b4 100644 --- a/cookbooks/civicrm/recipes/default.rb +++ b/cookbooks/civicrm/recipes/default.rb @@ -17,9 +17,13 @@ # limitations under the License. # +node.default[:ssl][:certificates] = node[:ssl][:certificates] | [ "crm.osmfoundation" ] + include_recipe "wordpress" include_recipe "mysql" +package "wkhtmltopdf" + passwords = data_bag_item("civicrm", "passwords") database_password = passwords["database"] @@ -35,12 +39,18 @@ mysql_database "civicrm" do end wordpress_site "crm.osmfoundation.org" do - ssl_enabled false + ssl_enabled true + ssl_certificate "crm.osmfoundation" database_name "civicrm" database_user "civicrm" database_password database_password end +wordpress_theme "osmblog-wp-theme" do + site "crm.osmfoundation.org" + repository "git://github.com/harry-wood/osmblog-wp-theme.git" +end + civicrm_version = node[:civicrm][:version] civicrm_directory = "/srv/crm.osmfoundation.org/wp-content/plugins/civicrm" @@ -111,25 +121,33 @@ settings = edit_file "#{civicrm_directory}/civicrm/templates/CRM/common/civicrm. line.gsub!(/%%dbPass%%/, database_password) line.gsub!(/%%dbHost%%/, "localhost") line.gsub!(/%%dbName%%/, "civicrm") - line.gsub!(/%%crmRoot%%/, "#{civicrm_directory}/civicrm") - line.gsub!(/%%templateCompileDir%%/, "/srv/crm.osmfoundation.org/wp-content/plugins/files/civicrm/templates_c") + line.gsub!(/%%crmRoot%%/, "#{civicrm_directory}/civicrm/") + line.gsub!(/%%templateCompileDir%%/, "/srv/crm.osmfoundation.org/wp-content/plugins/files/civicrm/templates_c/") line.gsub!(/%%baseURL%%/, "http://crm.osmfoundation.org/") line.gsub!(/%%siteKey%%/, site_key) line end -file "#{civicrm_directory}/civicrm/civicrm.settings.php" do +file "#{civicrm_directory}/civicrm.settings.php" do owner "wordpress" group "wordpress" mode 0644 content settings end +template "/etc/cron.d/osmf-crm" do + source "cron.erb" + owner "root" + group "root" + mode 0600 + variables :directory => civicrm_directory, :passwords => passwords +end + template "/etc/cron.daily/osmf-crm-backup" do source "backup.cron.erb" - owner "wordpress" - group "wordpress" + owner "root" + group "root" mode 0750 variables :passwords => passwords end