aboutsummaryrefslogtreecommitdiffstats
path: root/bootstrap.yml
blob: a4a45a5c297b12971a42df963104514f2eeed77b (plain)
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: #