Beheer een groep van computers op afstand over SSH. (Gebruik het
/etc/ansible/hosts
bestand om nieuwe groepen/hosts toe te voegen). Sommige subcommando's zoalsgalaxy
hebben hun eigen documentatie. Meer informatie: https://www.ansible.com/.
ansible {{groep}} --list-hosts
ansible {{groep}} -m ping
ansible {{groep}} -m setup
ansible {{groep}} -m command -a '{{mijn_commando}}'
ansible {{groep}} --become --ask-become-pass -m command -a '{{mijn_commando}}'
ansible {{groep}} -i {{inventaris_bestand}} -m command -a '{{mijn_command}}'
ansible localhost -m debug -a '{{var=groups.keys()}}'