X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/d7debc3ad43930a1ec8392f9d31a6084503813bb..3562bbca109c7ab3195e1f6df546045a5936d89d:/cookbooks/civicrm/recipes/default.rb diff --git a/cookbooks/civicrm/recipes/default.rb b/cookbooks/civicrm/recipes/default.rb index dce923a06..da727600c 100644 --- a/cookbooks/civicrm/recipes/default.rb +++ b/cookbooks/civicrm/recipes/default.rb @@ -20,10 +20,11 @@ include_recipe "wordpress" include_recipe "mysql" +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 @@ -34,15 +35,30 @@ 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 + +wordpress_plugin "sitepress-multilingual-cms" do + site "join.osmfoundation.org" + repository "git://chef.openstreetmap.org/sitepress-multilingual-cms.git" +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" @@ -52,7 +68,7 @@ end remote_file "/var/cache/chef/civicrm-#{civicrm_version}-wordpress.zip" do action :create_if_missing - source "http://downloads.sourceforge.net/project/civicrm/civicrm-stable/#{civicrm_version}/civicrm-#{civicrm_version}-wordpress.zip" + source "https://download.civicrm.org/civicrm-#{civicrm_version}-wordpress.zip" owner "wordpress" group "wordpress" mode 0644 @@ -61,7 +77,7 @@ end remote_file "/var/cache/chef/civicrm-#{civicrm_version}-l10n.tar.gz" do action :create_if_missing - source "http://downloads.sourceforge.net/project/civicrm/civicrm-stable/#{civicrm_version}/civicrm-#{civicrm_version}-l10n.tar.gz" + source "https://download.civicrm.org/civicrm-#{civicrm_version}-l10n.tar.gz" owner "wordpress" group "wordpress" mode 0644 @@ -95,7 +111,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 @@ -112,8 +128,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 @@ -130,7 +146,7 @@ template "/etc/cron.d/osmf-crm" do source "cron.erb" owner "root" group "root" - mode 0644 + mode 0600 variables :directory => civicrm_directory, :passwords => passwords end