X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/45dde9418dd342bb1a632d82559201c0b3becf1a..f8f64cbeff3122d4acc912647d26997f70c1f0fc:/cookbooks/blog/recipes/default.rb diff --git a/cookbooks/blog/recipes/default.rb b/cookbooks/blog/recipes/default.rb index 789658448..46b6902ad 100644 --- a/cookbooks/blog/recipes/default.rb +++ b/cookbooks/blog/recipes/default.rb @@ -24,7 +24,7 @@ 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 @@ -38,43 +38,65 @@ 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 "git://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" + 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 "git://github.com/openstreetmap/opengeodata-podcasts.git" + repository "https://github.com/openstreetmap/opengeodata-podcasts.git" depth 1 user "wordpress" group "wordpress" @@ -82,7 +104,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" @@ -90,7 +112,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" @@ -110,6 +132,6 @@ template "/etc/cron.daily/blog-backup" do source "backup.cron.erb" owner "root" group "root" - mode 0o750 + mode "750" variables :passwords => passwords end