Skip to content

Commit

Permalink
ansible: add French translation (tldr-pages#5494)
Browse files Browse the repository at this point in the history
  • Loading branch information
patricedenis authored Mar 24, 2021
1 parent 0efcf0f commit b162d78
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions pages.fr/common/ansible.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# ansible

> Gestionnaire de groupes d'ordinateurs à distance depuis SSH.
> Utiliser le fichier `/etc/ansible/hosts` pour ajouter de nouveaux groupes/hôtes.
> Plus d'information : <https://www.ansible.com>.
- Lister les hôtes appartenant à un groupe :

`ansible {{groupe}} --list-hosts`

- Ping d'un groupe d'hôtes en invoquant le [m]odule "ping" :

`ansible {{groupe}} -m ping`

- Afficher des informations sur un groupe d'hôtes en invoquant le [m]odule "setup" :

`ansible {{groupe}} -m setup`

- Exécuter une commande sur un groupe d'hôtes en invoquant le [m]odule "command" avec en paramètre (a) cette commande :

`ansible {{groupe}} -m command -a '{{ma_commande}}'`

- Exécuter une commande avec des droits administreur :

`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}}'`

0 comments on commit b162d78

Please sign in to comment.