enable.yml 510 B

123456789101112131415161718
  1. ---
  2. # input variables:
  3. - block:
  4. - include: init.yml
  5. - include: install.yml
  6. vars:
  7. install_docker_excluder: "{{ docker_excluder_on | bool }}"
  8. install_openshift_excluder: "{{ openshift_excluder_on | bool }}"
  9. when: docker_excluder_on or openshift_excluder_on | bool
  10. - include: exclude.yml
  11. vars:
  12. exclude_docker_excluder: "{{ docker_excluder_on | bool }}"
  13. exclude_openshift_excluder: "{{ openshift_excluder_on | bool }}"
  14. when:
  15. - not openshift.common.is_atomic | bool