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

ansible-doc: add German translation (#8801)

This commit is contained in:
Lukas 2022-10-14 11:32:40 +02:00 committed by GitHub
parent e4cdf39dfa
commit c82d430822
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,29 @@
# ansible-doc
> Anzeigen von Informationen über die in den Ansible-Bibliotheken installierten Module.
> Anzeigen einer knappen Auflistung von Plugins und deren Kurzbeschreibungen.
> Weitere Informationen: <https://docs.ansible.com/ansible/latest/cli/ansible-doc.html>.
- Auflisten der verfügbaren Aktions-Plugin (Module):
`ansible-doc --list`
- Auflisten der verfügbare Plugins eines bestimmten Typs:
`ansible-doc --type {{plugin_typ}} --list`
- Anzeigen von Informationen über ein bestimmtes Aktions-Plugin (Module):
`ansible-doc {{plugin_name}}`
- Anzeigen von Informationen über ein Plugin mit einem betimmten Typ:
`ansible-doc --type {{plugin_typ}} {{plugin_name}}`
- Anzeigen des Playbookausschnittes für ein Actions-Plugin (Module):
`ansible-doc --snippet {{plugin_name}}`
- Anzeigen von Informationen über ein Aktions-Plugin (Module) als JSON:
`ansible-doc --json {{plugin_name}}`