X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/eecaf26698348adf3d3b64ea680ad82f959a5ae4..2f1208a2f1796191ac32543b9b949d1c607dcd15:/cookbooks/blog/recipes/default.rb?ds=sidebyside diff --git a/cookbooks/blog/recipes/default.rb b/cookbooks/blog/recipes/default.rb index 2f80e2b13..8e4c21539 100644 --- a/cookbooks/blog/recipes/default.rb +++ b/cookbooks/blog/recipes/default.rb @@ -20,6 +20,7 @@ include_recipe "wordpress" passwords = data_bag_item("blog", "passwords") +wp2fa_encrypt_keys = data_bag_item("blog", "wp2fa_encrypt_keys") directory "/srv/blog.openstreetmap.org" do owner "wordpress" @@ -35,6 +36,7 @@ wordpress_site "blog.openstreetmap.org" do database_name "osm-blog" database_user "osm-blog-user" database_password passwords["osm-blog-user"] + wp2fa_encrypt_key wp2fa_encrypt_keys["key"] urls "/casts" => "/srv/blog.openstreetmap.org/casts", "/images" => "/srv/blog.openstreetmap.org/images", "/static" => "/srv/blog.openstreetmap.org/static" @@ -44,39 +46,60 @@ 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" + revision "master" depth 1 user "wordpress" group "wordpress" @@ -85,6 +108,7 @@ end git "/srv/blog.openstreetmap.org/images" do action :sync repository "https://github.com/openstreetmap/opengeodata-images.git" + revision "master" depth 1 user "wordpress" group "wordpress" @@ -93,6 +117,7 @@ end git "/srv/blog.openstreetmap.org/static" do action :sync repository "https://github.com/openstreetmap/opengeodata-static.git" + revision "master" depth 1 user "wordpress" group "wordpress"