X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/18e12b0e123fc3e5f344682f884feabc12da0f5a..7e5e5ba26f4a5b06fad5d1a1049df947e8a9cf00:/cookbooks/blog/recipes/default.rb diff --git a/cookbooks/blog/recipes/default.rb b/cookbooks/blog/recipes/default.rb index f8ec4f05a..e746b1006 100644 --- a/cookbooks/blog/recipes/default.rb +++ b/cookbooks/blog/recipes/default.rb @@ -1,8 +1,8 @@ # -# Cookbook Name:: blog +# Cookbook:: blog # Recipe:: default # -# Copyright 2013, OpenStreetMap Foundation +# Copyright:: 2013, OpenStreetMap Foundation # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -24,14 +24,13 @@ passwords = data_bag_item("blog", "passwords") directory "/srv/blog.openstreetmap.org" do owner "wordpress" group "wordpress" - mode 0o755 + mode "755" end wordpress_site "blog.openstreetmap.org" do aliases ["blog.osm.org", "blog.openstreetmap.com", "blog.openstreetmap.net", "blog.openstreetmaps.org", "blog.osmfoundation.org"] - ssl_enabled true directory "/srv/blog.openstreetmap.org/wp" database_name "osm-blog" database_user "osm-blog-user" @@ -39,43 +38,50 @@ wordpress_site "blog.openstreetmap.org" do urls "/casts" => "/srv/blog.openstreetmap.org/casts", "/images" => "/srv/blog.openstreetmap.org/images", "/static" => "/srv/blog.openstreetmap.org/static" + fpm_prometheus_port 11401 end wordpress_theme "blog.openstreetmap.org-osmblog-wp-theme" do - name "osmblog-wp-theme" + theme "osmblog-wp-theme" site "blog.openstreetmap.org" - repository "git://github.com/harry-wood/osmblog-wp-theme.git" + repository "https://github.com/harry-wood/osmblog-wp-theme.git" end wordpress_plugin "blog.openstreetmap.org-google-analytics-for-wordpress" do - name "google-analytics-for-wordpress" + plugin "google-analytics-for-wordpress" site "blog.openstreetmap.org" end wordpress_plugin "blog.openstreetmap.org-google-sitemap-generator" do - name "google-sitemap-generator" + plugin "google-sitemap-generator" site "blog.openstreetmap.org" end wordpress_plugin "blog.openstreetmap.org-shareadraft" do - name "shareadraft" + plugin "shareadraft" site "blog.openstreetmap.org" end wordpress_plugin "blog.openstreetmap.org-sitepress-multilingual-cms" do - name "sitepress-multilingual-cms" + plugin "sitepress-multilingual-cms" site "blog.openstreetmap.org" - repository "git://chef.openstreetmap.org/sitepress-multilingual-cms.git" + repository "https://git.openstreetmap.org/private/sitepress-multilingual-cms.git" + not_if { kitchen? } end wordpress_plugin "blog.openstreetmap.org-wordpress-importer" do - name "wordpress-importer" + plugin "wordpress-importer" + site "blog.openstreetmap.org" +end + +wordpress_plugin "blog.openstreetmap.org-wp-piwik" do + plugin "wp-piwik" site "blog.openstreetmap.org" end git "/srv/blog.openstreetmap.org/casts" do action :sync - repository "git://github.com/openstreetmap/opengeodata-podcasts.git" + repository "https://github.com/openstreetmap/opengeodata-podcasts.git" depth 1 user "wordpress" group "wordpress" @@ -83,7 +89,7 @@ end git "/srv/blog.openstreetmap.org/images" do action :sync - repository "git://github.com/openstreetmap/opengeodata-images.git" + repository "https://github.com/openstreetmap/opengeodata-images.git" depth 1 user "wordpress" group "wordpress" @@ -91,7 +97,7 @@ end git "/srv/blog.openstreetmap.org/static" do action :sync - repository "git://github.com/openstreetmap/opengeodata-static.git" + repository "https://github.com/openstreetmap/opengeodata-static.git" depth 1 user "wordpress" group "wordpress" @@ -111,6 +117,6 @@ template "/etc/cron.daily/blog-backup" do source "backup.cron.erb" owner "root" group "root" - mode 0o750 + mode "750" variables :passwords => passwords end