X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/aeaa46f3071de018b5c5e0f5678cb5b4082e3ddc..2bfb0ef07fb64314f5c4ded641a8c280df9c1d0b:/cookbooks/foundation/recipes/owg.rb diff --git a/cookbooks/foundation/recipes/owg.rb b/cookbooks/foundation/recipes/owg.rb index 5622f3343..6c637c62a 100644 --- a/cookbooks/foundation/recipes/owg.rb +++ b/cookbooks/foundation/recipes/owg.rb @@ -19,29 +19,24 @@ include_recipe "apache" include_recipe "git" +include_recipe "ruby" -package %w[ +package %W[ gcc g++ make - ruby - ruby-dev libssl-dev zlib1g-dev pkg-config ] -gem_package "bundler" do - version "1.17.3" -end - git "/srv/operations.osmfoundation.org" do action :sync repository "https://github.com/openstreetmap/owg-website.git" depth 1 user "root" group "root" - notifies :run, "execute[/srv/operations.osmfoundation.org/Gemfile]" + notifies :run, "bundle_install[/srv/operations.osmfoundation.org]" end directory "/srv/operations.osmfoundation.org/_site" do @@ -58,19 +53,17 @@ directory "/srv/operations.osmfoundation.org/.jekyll-cache" do group "nogroup" end -execute "/srv/operations.osmfoundation.org/Gemfile" do +bundle_install "/srv/operations.osmfoundation.org" do action :nothing - command "bundle install --deployment" - cwd "/srv/operations.osmfoundation.org" + options "--deployment" user "root" group "root" - notifies :run, "execute[/srv/operations.osmfoundation.org]" + notifies :run, "bundle_exec[/srv/operations.osmfoundation.org]" end -execute "/srv/operations.osmfoundation.org" do +bundle_exec "/srv/operations.osmfoundation.org" do action :nothing - command "bundle exec jekyll build --trace --baseurl=https://operations.osmfoundation.org" - cwd "/srv/operations.osmfoundation.org" + command "jekyll build --trace" user "nobody" group "nogroup" end