Download chef from chef.io

This commit is contained in:
Tim Smith 2015-08-25 21:53:50 -07:00
parent 38dd0a5bde
commit 72e8119233
2 changed files with 2 additions and 2 deletions

View File

@ -89,7 +89,7 @@ func (p *Provisioner) Prepare(raws ...interface{}) error {
if p.config.InstallCommand == "" {
p.config.InstallCommand = "curl -L " +
"https://www.opscode.com/chef/install.sh | " +
"https://www.chef.io/chef/install.sh | " +
"{{if .Sudo}}sudo {{end}}bash"
}

View File

@ -91,7 +91,7 @@ func (p *Provisioner) Prepare(raws ...interface{}) error {
}
if p.config.InstallCommand == "" {
p.config.InstallCommand = "curl -L https://www.opscode.com/chef/install.sh | {{if .Sudo}}sudo {{end}}bash"
p.config.InstallCommand = "curl -L https://www.chef.io/chef/install.sh | {{if .Sudo}}sudo {{end}}bash"
}
if p.config.RunList == nil {