ansible: add Dutch translation (#11481)

* ansible: add Dutch translation

---------

Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
pull/23/head
Leon 2023-11-13 10:07:25 +01:00 committed by GitHub
parent f2bcd297e9
commit 047146f7f7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,33 @@
# ansible
> Beheer een groep van computers op afstand over SSH. (Gebruik het `/etc/ansible/hosts` bestand om nieuwe groepen/hosts toe te voegen).
> Sommige subcommando's zoals `ansible galaxy` hebben hun eigen documentatie.
> Meer informatie: <https://www.ansible.com/>.
- Toon de hosts die tot een groep behoren:
`ansible {{groep}} --list-hosts`
- Ping een groep met hosts, met gebruik van de ping module:
`ansible {{groep}} -m ping`
- Toon feiten van een groep met hosts, met gebruik van de installatie module:
`ansible {{groep}} -m setup`
- Voer een commando op een groep met hosts uit. met gebruik van de commando module met argumenten:
`ansible {{groep}} -m command -a '{{mijn_commando}}'`
- Voer een commando uit met administratieve rechten:
`ansible {{groep}} --become --ask-become-pass -m command -a '{{mijn_commando}}'`
- Voer een commando uit met een aangepast inventaris bestand:
`ansible {{groep}} -i {{inventaris_bestand}} -m command -a '{{mijn_command}}'`
- Toon de groepen in een inventaris:
`ansible localhost -m debug -a '{{var=groups.keys()}}'`