X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/59daf18915ef13f46b1e7246e54edf2d78172342..9082f133d289bf0d280ed7d7cb96a40edc987ef4:/cookbooks/foundation/recipes/owg.rb?ds=inline diff --git a/cookbooks/foundation/recipes/owg.rb b/cookbooks/foundation/recipes/owg.rb index dc1f359eb..6c637c62a 100644 --- a/cookbooks/foundation/recipes/owg.rb +++ b/cookbooks/foundation/recipes/owg.rb @@ -19,33 +19,28 @@ 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 - mode 0o755 + mode "755" owner "nobody" group "nogroup" end @@ -53,24 +48,22 @@ end # Workaround https://github.com/jekyll/jekyll/issues/7804 # by creating a .jekyll-cache folder directory "/srv/operations.osmfoundation.org/.jekyll-cache" do - mode 0o755 + mode "755" owner "nobody" 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