mirror of https://github.com/CrimsonTome/tldr.git
17 lines
397 B
Markdown
17 lines
397 B
Markdown
# puppet apply
|
|
|
|
> Apply Puppet manifests locally.
|
|
> More information: <https://puppet.com/docs/puppet/7/man/apply.html>.
|
|
|
|
- Apply a manifest:
|
|
|
|
`puppet apply {{path/to/manifest}}`
|
|
|
|
- Execute puppet code:
|
|
|
|
`puppet apply --execute {{code}}`
|
|
|
|
- Use a specific module and hiera configuration file:
|
|
|
|
`puppet apply --modulepath {{path/to/directory}} --hiera_config {{path/to/file}} {{path/to/manifest}}`
|