provisioner/chef-solo: Say using Chef-solo
This commit is contained in:
parent
9fb347b96a
commit
167e91746f
|
@ -20,6 +20,7 @@ BUG FIXES:
|
||||||
* builder/amazon/chroot: Chroot commands work with shell provisioners. [GH-581]
|
* builder/amazon/chroot: Chroot commands work with shell provisioners. [GH-581]
|
||||||
* builder/vmware: VMX modifications are now case-insensitive. [GH-608]
|
* builder/vmware: VMX modifications are now case-insensitive. [GH-608]
|
||||||
* builder/vmware: VMware Fusion won't ask for VM upgrade.
|
* 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)
|
## 0.3.11 (November 4, 2013)
|
||||||
|
|
||||||
|
|
|
@ -206,6 +206,8 @@ func (p *Provisioner) Prepare(raws ...interface{}) error {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (p *Provisioner) Provision(ui packer.Ui, comm packer.Communicator) error {
|
func (p *Provisioner) Provision(ui packer.Ui, comm packer.Communicator) error {
|
||||||
|
ui.Say("Provisioning with chef-solo")
|
||||||
|
|
||||||
if !p.config.SkipInstall {
|
if !p.config.SkipInstall {
|
||||||
if err := p.installChef(ui, comm); err != nil {
|
if err := p.installChef(ui, comm); err != nil {
|
||||||
return fmt.Errorf("Error installing Chef: %s", err)
|
return fmt.Errorf("Error installing Chef: %s", err)
|
||||||
|
|
Loading…
Reference in New Issue