X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/3bcff805711e0fae3d5509d1f68edf7e605e4048..2f1208a2f1796191ac32543b9b949d1c607dcd15:/cookbooks/blog/recipes/default.rb?ds=sidebyside diff --git a/cookbooks/blog/recipes/default.rb b/cookbooks/blog/recipes/default.rb index 46b6902ad..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" @@ -97,6 +99,7 @@ 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" @@ -105,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" @@ -113,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"