---
- include_tasks: register.yml
  when: inventory_hostname in groups['congress-api']

- include_tasks: config.yml
  when: inventory_hostname in groups['congress-api'] or
        inventory_hostname in groups['congress-policy-engine'] or
        inventory_hostname in groups['congress-datasource']

- include_tasks: clone.yml
  when: congress_dev_mode | bool

- include_tasks: bootstrap.yml
  when: inventory_hostname in groups['congress-api']

- name: Flush handlers
  meta: flush_handlers