provisioner/puppet-masterless: check for hiera config path [GH-656]

pull/667/merge
Mitchell Hashimoto 13 years ago
parent 3b2e3456f6
commit 013c1829e4

@ -20,6 +20,8 @@ BUG FIXES:
get stuck with ISO. [GH-685]
* builder/vmware: File cleanup is more resilient to file delete races
with the operating system. [GH-675]
* provisioner/puppet-masterless: Check for hiera config path existence
properly. [GH-656]
## 0.4.0 (November 19, 2013)

@ -145,7 +145,7 @@ func (p *Provisioner) Prepare(raws ...interface{}) error {
// Validation
if p.config.HieraConfigPath != "" {
info, err := os.Stat(p.config.ManifestFile)
info, err := os.Stat(p.config.HieraConfigPath)
if err != nil {
errs = packer.MultiErrorAppend(errs,
fmt.Errorf("hiera_config_path is invalid: %s", err))

Loading…
Cancel
Save