X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/ad81220e82b6e2abc9e32dc5653aebe66db1d48c..d9f126925e7ea9bd78363d9e9a99f039f822a90d:/cookbooks/civicrm/recipes/default.rb?ds=sidebyside diff --git a/cookbooks/civicrm/recipes/default.rb b/cookbooks/civicrm/recipes/default.rb index 992d928be..54baedbf3 100644 --- a/cookbooks/civicrm/recipes/default.rb +++ b/cookbooks/civicrm/recipes/default.rb @@ -25,7 +25,6 @@ package "wkhtmltopdf" passwords = data_bag_item("civicrm", "passwords") database_password = passwords["database"] -admin_password = passwords["admin"] site_key = passwords["key"] mysql_user "civicrm@localhost" do @@ -36,15 +35,25 @@ mysql_database "civicrm" do permissions "civicrm@localhost" => :all end -wordpress_site "crm.osmfoundation.org" do - ssl_enabled false +wordpress_site "join.osmfoundation.org" do + aliases "crm.osmfoundation.org" + ssl_enabled true database_name "civicrm" database_user "civicrm" database_password database_password end +wordpress_theme "osmblog-wp-theme" do + site "join.osmfoundation.org" + repository "git://github.com/harry-wood/osmblog-wp-theme.git" +end + +wordpress_plugin "registration-honeypot" do + site "join.osmfoundation.org" +end + civicrm_version = node[:civicrm][:version] -civicrm_directory = "/srv/crm.osmfoundation.org/wp-content/plugins/civicrm" +civicrm_directory = "/srv/join.osmfoundation.org/wp-content/plugins/civicrm" directory "/opt/civicrm-#{civicrm_version}" do owner "wordpress" @@ -97,7 +106,7 @@ execute "/opt/civicrm-#{civicrm_version}/civicrm" do subscribes :run, "execute[/var/cache/chef/civicrm-#{civicrm_version}-l10n.tar.gz]", :immediately end -directory "/srv/crm.osmfoundation.org/wp-content/plugins/files" do +directory "/srv/join.osmfoundation.org/wp-content/plugins/files" do owner "www-data" group "www-data" mode 0755 @@ -114,8 +123,8 @@ settings = edit_file "#{civicrm_directory}/civicrm/templates/CRM/common/civicrm. 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!(/%%baseURL%%/, "http://crm.osmfoundation.org/") + line.gsub!(/%%templateCompileDir%%/, "/srv/join.osmfoundation.org/wp-content/plugins/files/civicrm/templates_c/") + line.gsub!(/%%baseURL%%/, "http://join.osmfoundation.org/") line.gsub!(/%%siteKey%%/, site_key) line