]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/serverinfo/recipes/default.rb
Standardise on using bundle_config to configure bundler
[chef.git] / cookbooks / serverinfo / recipes / default.rb
index 2bbc31e5b0d70d406ac702b3021e0ce6b67c4af4..3999ffe809def8de1d57b1b095aad6dc4cd0641d 100644 (file)
@@ -71,15 +71,18 @@ directory "/srv/hardware.openstreetmap.org/vendor" do
   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
 
@@ -88,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