X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/1facaf1dc96ab5b42492334c3170e1232b2f847d..0a263b524b87847d031bcfe01d5a00f3458e42bf:/cookbooks/foundation/recipes/owg.rb diff --git a/cookbooks/foundation/recipes/owg.rb b/cookbooks/foundation/recipes/owg.rb index ee6863135..3f4b6e3b2 100644 --- a/cookbooks/foundation/recipes/owg.rb +++ b/cookbooks/foundation/recipes/owg.rb @@ -23,14 +23,14 @@ include_recipe "git" package "ruby" package "ruby-dev" -gem_package "jekyll" +gem_package "bundler" git "/srv/operations.osmfoundation.org" do action :sync repository "git://github.com/gravitystorm/owg-log.git" user "root" group "root" - notifies :run, "execute[/srv/operations.osmfoundation.org]" + notifies :run, "execute[/srv/operations.osmfoundation.org/Gemfile]" end directory "/srv/operations.osmfoundation.org/_site" do @@ -39,9 +39,18 @@ directory "/srv/operations.osmfoundation.org/_site" do group "nogroup" end +execute "/srv/operations.osmfoundation.org/Gemfile" do + action :nothing + command "bundle install" + cwd "/srv/operations.osmfoundation.org" + user "root" + group "root" + notifies :run, "execute[/srv/operations.osmfoundation.org]" +end + execute "/srv/operations.osmfoundation.org" do action :nothing - command "jekyll build --trace" + command "bundle exec jekyll build --trace --baseurl=https://operations.osmfoundation.org" cwd "/srv/operations.osmfoundation.org" user "nobody" group "nogroup"