Update docs for puppet-server provisioner
This commit is contained in:
parent
864f4b5851
commit
58b06526f5
|
@ -23,10 +23,17 @@ type Config struct {
|
||||||
// A path to a directory containing the client private keys
|
// A path to a directory containing the client private keys
|
||||||
ClientPrivateKeyPath string `mapstructure:"client_private_key_path"`
|
ClientPrivateKeyPath string `mapstructure:"client_private_key_path"`
|
||||||
|
|
||||||
PuppetNode string `mapstructure:"puppet_node"`
|
// The hostname of the Puppet node.
|
||||||
PuppetServer string `mapstructure:"puppet_server"`
|
PuppetNode string `mapstructure:"puppet_node"`
|
||||||
Options string `mapstructure:"options"`
|
|
||||||
|
|
||||||
|
// The hostname of the Puppet server.
|
||||||
|
PuppetServer string `mapstructure:"puppet_server"`
|
||||||
|
|
||||||
|
// Additional options to be passed to `puppet agent`.
|
||||||
|
Options string `mapstructure:"options"`
|
||||||
|
|
||||||
|
// The directory where files will be uploaded. Packer requires write
|
||||||
|
// permissions in this directory.
|
||||||
StagingDir string `mapstructure:"staging_dir"`
|
StagingDir string `mapstructure:"staging_dir"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
---
|
---
|
||||||
layout: "docs"
|
layout: "docs"
|
||||||
page_title: "Puppet Provisioner"
|
page_title: "Puppet Server Provisioner"
|
||||||
---
|
---
|
||||||
|
|
||||||
# Puppet Provisioner
|
# Puppet Server Provisioner
|
||||||
|
|
||||||
Type: `puppet-server`
|
Type: `puppet-server`
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue