X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/de073fd1397bf9a931f3b5d2a0c1991a98fb5bdb..e3d78deb1037fd51772c1233fbe3aacad08842a0:/cookbooks/serverinfo/recipes/default.rb diff --git a/cookbooks/serverinfo/recipes/default.rb b/cookbooks/serverinfo/recipes/default.rb index 82a61185b..3999ffe80 100644 --- a/cookbooks/serverinfo/recipes/default.rb +++ b/cookbooks/serverinfo/recipes/default.rb @@ -64,23 +64,25 @@ directory "/srv/hardware.openstreetmap.org/_site" do group "nogroup" end -# FIXME: fix the the vendor directory permissions from prior root installs directory "/srv/hardware.openstreetmap.org/vendor" do action :create - recursive true owner "nobody" group "nogroup" + notifies :run, "bundle_install[/srv/hardware.openstreetmap.org]", :immediately +end + +bundle_config "/srv/hardware.openstreetmap.org" do + user "nobody" + group "nogroup" + settings "deployment" => "true", + "without" => "development:test", + "jobs" => node.cpu_cores.to_s end bundle_install "/srv/hardware.openstreetmap.org" do action :nothing user "nobody" group "nogroup" - environment "BUNDLE_FROZEN" => "true", - "BUNDLE_WITHOUT" => "development:test", - "BUNDLE_PATH" => "vendor/bundle", - "BUNDLE_DEPLOYMENT" => "1", - "BUNDLE_JOBS" => node.cpu_cores.to_s notifies :run, "bundle_exec[/srv/hardware.openstreetmap.org]" end @@ -89,9 +91,7 @@ bundle_exec "/srv/hardware.openstreetmap.org" do command "jekyll build --trace --disable-disk-cache --baseurl=https://hardware.openstreetmap.org" user "nobody" group "nogroup" - environment "LANG" => "C.UTF-8", - "BUNDLE_PATH" => "vendor/bundle", - "BUNDLE_DEPLOYMENT" => "1" + environment "LANG" => "C.UTF-8" end ssl_certificate "hardware.openstreetmap.org" do