]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/foundation/recipes/owg.rb
Add an alert for chef not running for an extended time
[chef.git] / cookbooks / foundation / recipes / owg.rb
index dc1f359eb749457fd30acb4332cf66a71be727a8..fb9aca201a4a6135ebe33952ad2805e9484844df 100644 (file)
@@ -24,15 +24,18 @@ package %w[
   gcc
   g++
   make
-  ruby
-  ruby-dev
+  ruby2.7
+  ruby2.7-dev
   libssl-dev
   zlib1g-dev
   pkg-config
 ]
 
 gem_package "bundler" do
-  version "1.17.3"
+  package_name "bundler"
+  version "~> 2.2.22"
+  gem_binary "gem2.7"
+  options "--format-executable"
 end
 
 git "/srv/operations.osmfoundation.org" do
@@ -45,7 +48,7 @@ git "/srv/operations.osmfoundation.org" do
 end
 
 directory "/srv/operations.osmfoundation.org/_site" do
-  mode 0o755
+  mode "755"
   owner "nobody"
   group "nogroup"
 end
@@ -53,14 +56,14 @@ 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
   action :nothing
-  command "bundle install --deployment"
+  command "bundle2.7 install --deployment"
   cwd "/srv/operations.osmfoundation.org"
   user "root"
   group "root"
@@ -68,8 +71,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 "bundle2.7 exec jekyll build --trace"
   cwd "/srv/operations.osmfoundation.org"
   user "nobody"
   group "nogroup"