Compare commits

...

2 Commits

Author SHA1 Message Date
Mitchell Hashimoto 0b23c8addf v0.3.7 2013-09-09 14:48:42 -07:00
Mitchell Hashimoto aa658e982b provisioner/puppet-masterless: detailed exit codes 2013-09-09 14:46:25 -07:00
3 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
## 0.3.7 (unreleased)
## 0.3.7 (September 9, 2013)
BACKWARDS INCOMPATIBILITIES:
+1 -1
View File
@@ -15,7 +15,7 @@ const Version = "0.3.7"
// Any pre-release marker for the version. If this is "" (empty string),
// then it means that it is a final release. Otherwise, this is the
// pre-release marker.
const VersionPrerelease = "dev"
const VersionPrerelease = ""
type versionCommand byte
@@ -72,6 +72,7 @@ func (p *Provisioner) Prepare(raws ...interface{}) error {
p.config.ExecuteCommand = "{{.FacterVars}}{{if .Sudo}} sudo -E {{end}}" +
"puppet apply --verbose --modulepath='{{.ModulePath}}' " +
"{{if .HasHieraConfigPath}}--hiera_config='{{.HieraConfigPath}}' {{end}}" +
"--detailed-exitcodes " +
"{{.ManifestFile}}"
}