aboutsummaryrefslogtreecommitdiff
path: root/containers.yml
blob: c582178b4bbfd37b3551bc4ce6aafc593ad56804 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
- hosts: localhost
  gather_facts: false
  tasks:
    - name: Add localhost to all group if no hosts are defined
      ansible.builtin.add_host:
        name: localhost
        ansible_connection: "local"
      when: groups['all'] | length == 0


- hosts: all
  tasks:
    - ansible.builtin.import_role:
        name: "containers"