1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-21 22:42:09 +02:00

ansible-inventory: add page (#5756)

This commit is contained in:
Adam Herst 2021-04-15 21:47:12 -04:00 committed by GitHub
parent 3d242814ab
commit 5bc4c97786
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,21 @@
# ansible-inventory
> Display or dump an Ansible inventory.
> See also: `ansible`.
> More information: <https://docs.ansible.com/ansible/latest/cli/ansible-inventory.html>.
- Display the default inventory:
`ansible-inventory --list`
- Display a custom inventory:
`ansbile-inventory --list --inventory {{path/to/file_or_script_or_directory}}`
- Display the default inventory in YAML:
`ansible-inventory --list --yaml`
- Dump the default inventory to a file:
`ansible-inventory --list --output {{path/to/file}}`