provisioner/chef-solo: Say using Chef-solo

This commit is contained in:
Mitchell Hashimoto 2013-11-09 18:44:53 -08:00
parent cdf2b4ff0b
commit 457b99db3f
2 changed files with 3 additions and 0 deletions

View File

@ -20,6 +20,7 @@ BUG FIXES:
* builder/amazon/chroot: Chroot commands work with shell provisioners. [GH-581]
* builder/vmware: VMX modifications are now case-insensitive. [GH-608]
* builder/vmware: VMware Fusion won't ask for VM upgrade.
* provisioner/chef-solo: Output is slightly prettier and more informative.
## 0.3.11 (November 4, 2013)

View File

@ -206,6 +206,8 @@ func (p *Provisioner) Prepare(raws ...interface{}) error {
}
func (p *Provisioner) Provision(ui packer.Ui, comm packer.Communicator) error {
ui.Say("Provisioning with chef-solo")
if !p.config.SkipInstall {
if err := p.installChef(ui, comm); err != nil {
return fmt.Errorf("Error installing Chef: %s", err)