X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/aeaa46f3071de018b5c5e0f5678cb5b4082e3ddc..d51169137e4f79bbe3aba52be72071d11dd27127:/cookbooks/blog/recipes/default.rb diff --git a/cookbooks/blog/recipes/default.rb b/cookbooks/blog/recipes/default.rb index 2dd9e5f4d..46b6902ad 100644 --- a/cookbooks/blog/recipes/default.rb +++ b/cookbooks/blog/recipes/default.rb @@ -38,41 +38,62 @@ 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 theme "osmblog-wp-theme" site "blog.openstreetmap.org" - repository "https://github.com/harry-wood/osmblog-wp-theme.git" + repository "https://github.com/osmfoundation/osmblog-wp-theme.git" end wordpress_plugin "blog.openstreetmap.org-google-analytics-for-wordpress" do + action :delete plugin "google-analytics-for-wordpress" site "blog.openstreetmap.org" end wordpress_plugin "blog.openstreetmap.org-google-sitemap-generator" do + action :delete plugin "google-sitemap-generator" site "blog.openstreetmap.org" end +# wordpress_plugin "blog.openstreetmap.org-www-xml-sitemap-generator-org" do +# plugin "www-xml-sitemap-generator-org" +# site "blog.openstreetmap.org" +# end + wordpress_plugin "blog.openstreetmap.org-shareadraft" do + action :delete plugin "shareadraft" site "blog.openstreetmap.org" end +wordpress_plugin "blog.openstreetmap.org-public-post-preview" do + plugin "public-post-preview" + site "blog.openstreetmap.org" +end + wordpress_plugin "blog.openstreetmap.org-sitepress-multilingual-cms" do plugin "sitepress-multilingual-cms" site "blog.openstreetmap.org" repository "https://git.openstreetmap.org/private/sitepress-multilingual-cms.git" - not_if { ENV["TEST_KITCHEN"] } + revision "master" + not_if { kitchen? } end wordpress_plugin "blog.openstreetmap.org-wordpress-importer" do + action :delete 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 "https://github.com/openstreetmap/opengeodata-podcasts.git"