1
0
Fork 0
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:
franzqat 2021-10-04 18:08:26 +02:00 committed by GitHub
parent 99eab917c6
commit a813813fe3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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()}}'`