Skip to content
This repository has been archived by the owner on Nov 25, 2024. It is now read-only.

Use correct/new chef url for installing chef #128

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/builderator/interface/packer.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down