mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-01 22:15:23 +02:00
ansible: sync Italian translation (#6780)
This commit is contained in:
parent
99eab917c6
commit
a813813fe3
1 changed files with 8 additions and 3 deletions
|
@ -1,10 +1,11 @@
|
|||
# ansible
|
||||
|
||||
> Gestisci gruppi di computer da remoto via SSH.
|
||||
> Gestisce gruppi di computer da remoto via SSH.
|
||||
> Usa il file `/etc/ansible/hosts` per aggiungere nuovi gruppi/host.
|
||||
> Alcuni comandi aggiuntivi, come`ansible galaxy`, hanno la loro documentazione.
|
||||
> Maggiori informazioni: <https://www.ansible.com/>.
|
||||
|
||||
- Lista gli host appartenenti ad un gruppo:
|
||||
- Elenca gli host appartenenti ad un gruppo:
|
||||
|
||||
`ansible {{gruppo}} --list-hosts`
|
||||
|
||||
|
@ -12,7 +13,7 @@
|
|||
|
||||
`ansible {{gruppo}} -m ping`
|
||||
|
||||
- Mostra informazioni su di un gruppo di host invocando il modulo "setup":
|
||||
- Mostra informazioni su un gruppo di host invocando il modulo "setup":
|
||||
|
||||
`ansible {{gruppo}} -m setup`
|
||||
|
||||
|
@ -27,3 +28,7 @@
|
|||
- Esegui un comando usando un file di inventory personalizzato:
|
||||
|
||||
`ansible {{gruppo}} -i {{file_inventory}} -m command -a '{{comando}}'`
|
||||
|
||||
- Elenca i gruppi in un inventory:
|
||||
|
||||
`ansible localhost -m debug -a '{{var=groups.keys()}}'`
|
||||
|
|
Loading…
Add table
Reference in a new issue