X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/58385946efceedfb15217db5d5a6966a316b6192..531f7f92d79813c6e0b5e00d1d8c446197e12f27:/cookbooks/civicrm/recipes/default.rb?ds=sidebyside diff --git a/cookbooks/civicrm/recipes/default.rb b/cookbooks/civicrm/recipes/default.rb index be9774e13..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"