ansible-pull: add German translation (#8803)

pull/1/head
Lukas 2022-10-10 17:21:02 +02:00 committed by GitHub
parent 45f8cb0e87
commit 2868a6bafc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,20 @@
# ansible-pull
> Laden eines Ansible-Playbooks aus einem VCS-Repository und ausführen auf dem lokalen Host.
> Weitere Informationen: <https://docs.ansible.com/ansible/latest/cli/ansible-pull.html>.
- Laden eines Playbooks aus einem VCS und ausführen des standardmässigen local.yml Playbooks:
`ansible-pull -U {{repository_url}}`
- Laden eines Playbooks aus einem VCS und ausführen eines spezifischen Playbooks:
`ansible-pull -U {{repository_url}} {{playbook}}`
- Laden eines Playbooks aus einem VCS unter angabe eines bestimmten branches und ausführen eines spezifischen Playbooks:
`ansible-pull -U {{repository_url}} -C {{branch}} {{playbook}}`
- Laden eines Playbooks aus einem VCS und ausführen eines spezifischen Playbooks unter angabe einer Hosts-Datei:
`ansible-pull -U {{repository_url}} -i {{hosts_datei}} {{playbook}}`