Merge pull request #3971 from mitchellh/fix3486

change chef-solo provisioner staging directory
This commit is contained in:
Matthew Hooker 2016-10-14 15:51:26 -07:00 committed by GitHub
commit d8439b0034
1 changed files with 2 additions and 2 deletions

View File

@ -29,12 +29,12 @@ var guestOSTypeConfigs = map[string]guestOSTypeConfig{
provisioner.UnixOSType: guestOSTypeConfig{
executeCommand: "{{if .Sudo}}sudo {{end}}chef-solo --no-color -c {{.ConfigPath}} -j {{.JsonPath}}",
installCommand: "curl -L https://omnitruck.chef.io/install.sh | {{if .Sudo}}sudo {{end}}bash",
stagingDir: "/tmp/packer-chef-client",
stagingDir: "/tmp/packer-chef-solo",
},
provisioner.WindowsOSType: guestOSTypeConfig{
executeCommand: "c:/opscode/chef/bin/chef-solo.bat --no-color -c {{.ConfigPath}} -j {{.JsonPath}}",
installCommand: "powershell.exe -Command \". { iwr -useb https://omnitruck.chef.io/install.ps1 } | iex; install\"",
stagingDir: "C:/Windows/Temp/packer-chef-client",
stagingDir: "C:/Windows/Temp/packer-chef-solo",
},
}