Add Puppet Bin Dir to puppet-masterless provisioner
This commit is contained in:
parent
1bc73cf448
commit
6f9294095f
|
@ -55,6 +55,10 @@ type Config struct {
|
||||||
// Packer requires the directory to exist when running puppet.
|
// Packer requires the directory to exist when running puppet.
|
||||||
WorkingDir string `mapstructure:"working_directory"`
|
WorkingDir string `mapstructure:"working_directory"`
|
||||||
|
|
||||||
|
// The directory that contains the puppet binary.
|
||||||
|
// E.g. if it can't be found on the standard path.
|
||||||
|
PuppetBinDir string `mapstructure:"puppet_bin_dir"`
|
||||||
|
|
||||||
// If true, packer will ignore all exit-codes from a puppet run
|
// If true, packer will ignore all exit-codes from a puppet run
|
||||||
IgnoreExitCodes bool `mapstructure:"ignore_exit_codes"`
|
IgnoreExitCodes bool `mapstructure:"ignore_exit_codes"`
|
||||||
}
|
}
|
||||||
|
@ -70,6 +74,7 @@ type ExecuteTemplate struct {
|
||||||
ModulePath string
|
ModulePath string
|
||||||
ManifestFile string
|
ManifestFile string
|
||||||
ManifestDir string
|
ManifestDir string
|
||||||
|
PuppetBinDir string
|
||||||
Sudo bool
|
Sudo bool
|
||||||
ExtraArguments string
|
ExtraArguments string
|
||||||
}
|
}
|
||||||
|
@ -92,7 +97,8 @@ func (p *Provisioner) Prepare(raws ...interface{}) error {
|
||||||
if p.config.ExecuteCommand == "" {
|
if p.config.ExecuteCommand == "" {
|
||||||
p.config.ExecuteCommand = "cd {{.WorkingDir}} && " +
|
p.config.ExecuteCommand = "cd {{.WorkingDir}} && " +
|
||||||
"{{.FacterVars}} {{if .Sudo}} sudo -E {{end}}" +
|
"{{.FacterVars}} {{if .Sudo}} sudo -E {{end}}" +
|
||||||
"puppet apply --verbose --modulepath='{{.ModulePath}}' " +
|
"{{if ne .PuppetBinDir \"\"}}{{.PuppetBinDir}}{{end}}puppet apply " +
|
||||||
|
"--verbose --modulepath='{{.ModulePath}}' " +
|
||||||
"{{if ne .HieraConfigPath \"\"}}--hiera_config='{{.HieraConfigPath}}' {{end}}" +
|
"{{if ne .HieraConfigPath \"\"}}--hiera_config='{{.HieraConfigPath}}' {{end}}" +
|
||||||
"{{if ne .ManifestDir \"\"}}--manifestdir='{{.ManifestDir}}' {{end}}" +
|
"{{if ne .ManifestDir \"\"}}--manifestdir='{{.ManifestDir}}' {{end}}" +
|
||||||
"--detailed-exitcodes " +
|
"--detailed-exitcodes " +
|
||||||
|
@ -227,6 +233,7 @@ func (p *Provisioner) Provision(ui packer.Ui, comm packer.Communicator) error {
|
||||||
ManifestDir: remoteManifestDir,
|
ManifestDir: remoteManifestDir,
|
||||||
ManifestFile: remoteManifestFile,
|
ManifestFile: remoteManifestFile,
|
||||||
ModulePath: strings.Join(modulePaths, ":"),
|
ModulePath: strings.Join(modulePaths, ":"),
|
||||||
|
PuppetBinDir: p.config.PuppetBinDir,
|
||||||
Sudo: !p.config.PreventSudo,
|
Sudo: !p.config.PreventSudo,
|
||||||
WorkingDir: p.config.WorkingDir,
|
WorkingDir: p.config.WorkingDir,
|
||||||
ExtraArguments: strings.Join(p.config.ExtraArguments, " "),
|
ExtraArguments: strings.Join(p.config.ExtraArguments, " "),
|
||||||
|
|
|
@ -28,6 +28,31 @@ func TestProvisioner_Impl(t *testing.T) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestProvisionerPrepare_puppetBinDir(t *testing.T) {
|
||||||
|
config := testConfig()
|
||||||
|
|
||||||
|
delete(config, "puppet_bin_dir")
|
||||||
|
p := new(Provisioner)
|
||||||
|
err := p.Prepare(config)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("err: %s", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Test with a good one
|
||||||
|
tf, err := ioutil.TempFile("", "packer")
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("error tempfile: %s", err)
|
||||||
|
}
|
||||||
|
defer os.Remove(tf.Name())
|
||||||
|
|
||||||
|
config["puppet_bin_dir"] = tf.Name()
|
||||||
|
p = new(Provisioner)
|
||||||
|
err = p.Prepare(config)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("err: %s", err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
func TestProvisionerPrepare_hieraConfigPath(t *testing.T) {
|
func TestProvisionerPrepare_hieraConfigPath(t *testing.T) {
|
||||||
config := testConfig()
|
config := testConfig()
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue