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

This commit is contained in:
Mitchell Hashimoto 2013-12-06 19:30:06 -08:00
parent 2b4bdee0a2
commit 956f49f439
2 changed files with 3 additions and 1 deletions

View File

@ -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)

View File

@ -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))