From 9289142f136a17fd80b84c75acc73e31f648e58a Mon Sep 17 00:00:00 2001 From: Ulrich Dangel Date: Mon, 11 Feb 2019 20:26:40 +0000 Subject: [PATCH] Use correct/new chef url for installing chef Based on https://docs.chef.io/install_omnibus.html the correct url to install chef from is https://omnitruck.chef.io/install.sh and not https://www.chef.io/chef/install.sh --- lib/builderator/interface/packer.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/builderator/interface/packer.rb b/lib/builderator/interface/packer.rb index 8452fa5..30de34b 100644 --- a/lib/builderator/interface/packer.rb +++ b/lib/builderator/interface/packer.rb @@ -171,7 +171,7 @@ def _chef_execute_command(sudo = true) def _chef_install_command(sudo = true) template = sudo ? 'sudo ' : '' - "curl -L https://www.chef.io/chef/install.sh | #{template}bash -s -- -v #{Config.chef.version}" + "curl -L https://omnitruck.chef.io/install.sh | #{template}bash -s -- -v #{Config.chef.version}" end end end