1 2 3 4 5 6 7 8 9 10 11 12 13
--- # To override the bootstrapping host: # $ ansible-playbook bootstrap.yml --extra-vars "host=<host>" # - name: Bootstrap hosts for Ansible deployment :-) hosts: "{{ host | default('all') }}" user: root gather_facts: false roles: - bootstrap # vim: set ft=yaml sw=2: #