]> git.openstreetmap.org Git - chef.git/commitdiff
Merge pull request #269 from Firefishy/blogs-use-bundle-deployment
authorGrant <git@firefishy.com>
Sun, 16 Feb 2020 01:06:20 +0000 (01:06 +0000)
committerGitHub <noreply@github.com>
Sun, 16 Feb 2020 01:06:20 +0000 (01:06 +0000)
blogs: use bundle install deployment over global

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

index 6432a98d331ae3554593f4402f8256820981a4dc..49e52cb57692fb888cf59a9e48581c8a895226ef 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,16 +51,16 @@ 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"
+  user "blogs"
+  group "blogs"
   notifies :run, "execute[/srv/blogs.openstreetmap.org]", :immediately
 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