Merge pull request #4333 from rickard-von-essen/puppet-server-doc-fix
provisioner/puppet-server: Fixed formatting for execute_command
This commit is contained in:
commit
0651bcb7a8
|
@ -85,14 +85,15 @@ listed below:
|
|||
variables](/docs/templates/configuration-templates.html) available. See
|
||||
below for more information. By default, Packer uses the following command:
|
||||
|
||||
``` {{.FacterVars}} {{if .Sudo}} sudo -E {{end}}" +
|
||||
"puppet agent --onetime --no-daemonize " +
|
||||
"{{if ne .PuppetServer \"\"}}--server='{{.PuppetServer}}' {{end}}" +
|
||||
"{{if ne .Options \"\"}}{{.Options}} {{end}}" +
|
||||
"{{if ne .PuppetNode \"\"}}--certname={{.PuppetNode}} {{end}}" +
|
||||
"{{if ne .ClientCertPath \"\"}}--certdir='{{.ClientCertPath}}' {{end}}" +
|
||||
"{{if ne .ClientPrivateKeyPath \"\"}}--privatekeydir='{{.ClientPrivateKeyPath}}' {{end}}" +
|
||||
"--detailed-exitcodes
|
||||
```
|
||||
{{.FacterVars}} {{if .Sudo}} sudo -E {{end}} \
|
||||
puppet agent --onetime --no-daemonize \
|
||||
{{if ne .PuppetServer \"\"}}--server='{{.PuppetServer}}' {{end}} \
|
||||
{{if ne .Options \"\"}}{{.Options}} {{end}} \
|
||||
{{if ne .PuppetNode \"\"}}--certname={{.PuppetNode}} {{end}} \
|
||||
{{if ne .ClientCertPath \"\"}}--certdir='{{.ClientCertPath}}' {{end}} \
|
||||
{{if ne .ClientPrivateKeyPath \"\"}}--privatekeydir='{{.ClientPrivateKeyPath}}' \
|
||||
{{end}} --detailed-exitcodes
|
||||
```
|
||||
|
||||
## Default Facts
|
||||
|
|
Loading…
Reference in New Issue