Merge pull request #2681 from tas50/master

Download chef from chef.io
This commit is contained in:
Chris Bednarski 2015-08-27 14:37:12 -07:00
commit 17cea4fa95
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 {