1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/puppet-apply.md
Managor a5833ce758
*: make more information links dynamic (#16244)
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
2025-04-23 10:24:12 +03:00

16 lines
420 B
Markdown

# puppet apply
> Apply Puppet manifests locally.
> More information: <https://github.com/puppetlabs/puppet/blob/main/references/man/apply.md>.
- 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}}`