]> git.openstreetmap.org Git - chef.git/commitdiff
blogs: use bundle install deployment over global
authorGrant Slater <git@firefishy.com>
Sat, 15 Feb 2020 23:43:08 +0000 (23:43 +0000)
committerGrant Slater <git@firefishy.com>
Sat, 15 Feb 2020 23:43:40 +0000 (23:43 +0000)
Switch to using safe `bundle install --deployment` instead of
global install, which may conflict with other dependencies.

cookbooks/blogs/recipes/default.rb
cookbooks/blogs/templates/default/cron.erb

index 6432a98d331ae3554593f4402f8256820981a4dc..f37b4156f62b145c555287b718db1d23020e93e4 100644 (file)
@@ -43,6 +43,7 @@ end
 git "/srv/blogs.openstreetmap.org" do
   action :sync
   repository "git://github.com/gravitystorm/blogs.osm.org.git"
+  depth 5
   user "blogs"
   group "blogs"
   notifies :run, "execute[/srv/blogs.openstreetmap.org/Gemfile]", :immediately
@@ -50,7 +51,7 @@ end
 
 execute "/srv/blogs.openstreetmap.org/Gemfile" do
   action :nothing
-  command "bundle install"
+  command "bundle install --deployment"
   cwd "/srv/blogs.openstreetmap.org"
   user "root"
   group "root"
@@ -59,7 +60,7 @@ end
 
 execute "/srv/blogs.openstreetmap.org" do
   action :nothing
-  command "bundle exec /usr/local/bin/pluto build -t osm -o build"
+  command "bundle exec pluto build -t osm -o build"
   cwd "/srv/blogs.openstreetmap.org"
   user "blogs"
   group "blogs"
index c2d6dfb1693942c9ba55ad2d71724adc530159e4..fe4ef2a0e89166390a34248c73ff1d27b4dfa0c6 100644 (file)
@@ -2,4 +2,4 @@
 
 MAILTO=admins@openstreetmap.org
 
-*/30 * * * * blogs cd /srv/blogs.openstreetmap.org; bundle exec /usr/local/bin/pluto --quieter --config=/srv/blogs.openstreetmap.org build --dbpath=/srv/blogs.openstreetmap.org --template=osm --output=/srv/blogs.openstreetmap.org/build /srv/blogs.openstreetmap.org/planet.ini > /dev/null
+*/30 * * * * blogs cd /srv/blogs.openstreetmap.org; bundle exec pluto --quieter --config=/srv/blogs.openstreetmap.org build --dbpath=/srv/blogs.openstreetmap.org --template=osm --output=/srv/blogs.openstreetmap.org/build /srv/blogs.openstreetmap.org/planet.ini > /dev/null