Commit a2ec4bca authored by Ross Smith II's avatar Ross Smith II

Merge pull request #1771 from neekipatel/master

Allow manifest_file to be a directory for Puppet Masterless Porvisioner
parents 9a9395a4 3a3a81b0
...@@ -176,13 +176,10 @@ func (p *Provisioner) Prepare(raws ...interface{}) error { ...@@ -176,13 +176,10 @@ func (p *Provisioner) Prepare(raws ...interface{}) error {
errs = packer.MultiErrorAppend(errs, errs = packer.MultiErrorAppend(errs,
fmt.Errorf("A manifest_file must be specified.")) fmt.Errorf("A manifest_file must be specified."))
} else { } else {
info, err := os.Stat(p.config.ManifestFile) _, err := os.Stat(p.config.ManifestFile)
if err != nil { if err != nil {
errs = packer.MultiErrorAppend(errs, errs = packer.MultiErrorAppend(errs,
fmt.Errorf("manifest_file is invalid: %s", err)) fmt.Errorf("manifest_file is invalid: %s", err))
} else if info.IsDir() {
errs = packer.MultiErrorAppend(errs,
fmt.Errorf("manifest_file must point to a file"))
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment