]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/blogs/recipes/default.rb
Bump actions/cache from v1 to v2
[chef.git] / cookbooks / blogs / recipes / default.rb
index f37b4156f62b145c555287b718db1d23020e93e4..365d84643155751ce3b7067f593c443da5d144bc 100644 (file)
@@ -42,8 +42,8 @@ end
 
 git "/srv/blogs.openstreetmap.org" do
   action :sync
-  repository "git://github.com/gravitystorm/blogs.osm.org.git"
-  depth 5
+  repository "https://github.com/gravitystorm/blogs.osm.org.git"
+  depth 1
   user "blogs"
   group "blogs"
   notifies :run, "execute[/srv/blogs.openstreetmap.org/Gemfile]", :immediately
@@ -53,8 +53,8 @@ execute "/srv/blogs.openstreetmap.org/Gemfile" do
   action :nothing
   command "bundle install --deployment"
   cwd "/srv/blogs.openstreetmap.org"
-  user "root"
-  group "root"
+  user "blogs"
+  group "blogs"
   notifies :run, "execute[/srv/blogs.openstreetmap.org]", :immediately
 end
 
@@ -77,6 +77,13 @@ apache_site "blogs.openstreetmap.org" do
   variables :aliases => ["blogs.osm.org"]
 end
 
+template "/usr/local/bin/blogs-update" do
+  source "blogs-update.erb"
+  owner "root"
+  group "root"
+  mode "0755"
+end
+
 template "/etc/cron.d/blogs" do
   source "cron.erb"
   owner "root"