X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/f1be9b31bb948deaf5b68e3a918fb4e24bb39895..f5c209a2991b26130dcae5cfcc613be001f5106d:/cookbooks/blog/recipes/default.rb diff --git a/cookbooks/blog/recipes/default.rb b/cookbooks/blog/recipes/default.rb index 2d234cb48..49759f4ee 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. @@ -41,40 +41,41 @@ wordpress_site "blog.openstreetmap.org" do 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 { ENV["TEST_KITCHEN"] } end wordpress_plugin "blog.openstreetmap.org-wordpress-importer" do - name "wordpress-importer" + plugin "wordpress-importer" 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 +83,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 +91,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"