forked from tldr-pages/tldr
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ansible: add French translation (tldr-pages#5494)
- Loading branch information
1 parent
0efcf0f
commit b162d78
Showing
1 changed file
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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}}'` |