X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/f5c209a2991b26130dcae5cfcc613be001f5106d..a6a40aaf96f0620bf8f4a6e9f01b44ff25d8307b:/cookbooks/foundation/recipes/owg.rb diff --git a/cookbooks/foundation/recipes/owg.rb b/cookbooks/foundation/recipes/owg.rb index 70662e702..31d41aa1f 100644 --- a/cookbooks/foundation/recipes/owg.rb +++ b/cookbooks/foundation/recipes/owg.rb @@ -21,9 +21,14 @@ include_recipe "apache" include_recipe "git" package %w[ + gcc + g++ + make ruby ruby-dev + libssl-dev zlib1g-dev + pkg-config ] gem_package "bundler" do @@ -33,13 +38,14 @@ 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]" end directory "/srv/operations.osmfoundation.org/_site" do - mode 0o755 + mode "755" owner "nobody" group "nogroup" end @@ -47,7 +53,7 @@ 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 @@ -62,8 +68,7 @@ execute "/srv/operations.osmfoundation.org/Gemfile" do end execute "/srv/operations.osmfoundation.org" do - action :nothing - command "bundle exec jekyll build --trace --baseurl=https://operations.osmfoundation.org" + command "bundle exec jekyll build --trace" cwd "/srv/operations.osmfoundation.org" user "nobody" group "nogroup"