X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/0a374fa9435ff5f1f21874f99d2c460f6f7d8c2a..df6b53394011fe72217ac3019daeef975430b2c8:/cookbooks/foundation/recipes/owg.rb diff --git a/cookbooks/foundation/recipes/owg.rb b/cookbooks/foundation/recipes/owg.rb index bc9b27093..6c637c62a 100644 --- a/cookbooks/foundation/recipes/owg.rb +++ b/cookbooks/foundation/recipes/owg.rb @@ -1,8 +1,8 @@ # -# Cookbook Name:: foundation +# Cookbook:: foundation # Recipe:: owg # -# Copyright 2016, OpenStreetMap Foundation +# Copyright:: 2016, OpenStreetMap Foundation # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -19,42 +19,51 @@ include_recipe "apache" include_recipe "git" +include_recipe "ruby" -package %w[ - ruby - ruby-dev +package %W[ + gcc + g++ + make + libssl-dev zlib1g-dev + pkg-config ] -gem_package "bundler" - git "/srv/operations.osmfoundation.org" do action :sync - repository "git://github.com/openstreetmap/owg-website.git" + 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 + +# Workaround https://github.com/jekyll/jekyll/issues/7804 +# by creating a .jekyll-cache folder +directory "/srv/operations.osmfoundation.org/.jekyll-cache" do + 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" - 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