provisioner/puppet-masterless: check for hiera config path [GH-656]
This commit is contained in:
parent
2b4bdee0a2
commit
956f49f439
|
@ -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…
Reference in New Issue