1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-03-28 21:16:20 +01:00

ansible: sync French translation with English page (list groups) (#5804)

Also use a simple (and correct) word for "administrative". 😇
This commit is contained in:
Nicolas Kosinski 2021-04-21 14:52:05 +02:00 committed by GitHub
parent d028ac125e
commit 44a899a354
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -20,10 +20,14 @@
`ansible {{groupe}} -m command -a '{{ma_commande}}'`
- Exécuter une commande avec des droits administreur :
- Exécuter une commande avec des droits administrateur :
`ansible {{groupe}} --become --ask-become-pass -m command -a '{{ma_commande}}'`
- Exécuter une commande en utilisant un fichier d'inventaire personnalisé :
`ansible {{groupe}} -i {{fichier_d'inventaire}} -m command -a '{{ma_commande}}'`
- Lister les groupes d'un inventaire :
`ansible localhost -m debug -a '{{var=groups.keys()}}'`