Commit 25924a2d authored by Mitchell Hashimoto's avatar Mitchell Hashimoto

provisioner/puppet-masterless: user variables in puppet vars [GH-448]

parent 44d1f3d9
...@@ -35,6 +35,8 @@ BUG FIXES: ...@@ -35,6 +35,8 @@ BUG FIXES:
* post-processor/vagrant: Override configurations properly work. [GH-426] * post-processor/vagrant: Override configurations properly work. [GH-426]
* provisioner/puppet-masterless: Fix failure case when both facter vars * provisioner/puppet-masterless: Fix failure case when both facter vars
are used and prevent_sudo. [GH-415] are used and prevent_sudo. [GH-415]
* provisioner/puppet-masterless: User variables now work properly in
manifest file and hiera path. [GH-448]
## 0.3.7 (September 9, 2013) ## 0.3.7 (September 9, 2013)
......
...@@ -82,6 +82,8 @@ func (p *Provisioner) Prepare(raws ...interface{}) error { ...@@ -82,6 +82,8 @@ func (p *Provisioner) Prepare(raws ...interface{}) error {
// Templates // Templates
templates := map[string]*string{ templates := map[string]*string{
"hiera_config_path": &p.config.HieraConfigPath,
"manifest_file": &p.config.ManifestFile,
"staging_dir": &p.config.StagingDir, "staging_dir": &p.config.StagingDir,
} }
......
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