---
- name: "Gather OS specific variables"
  include_vars: "{{ item }}"
  with_first_found:
    - "{{ ansible_distribution|lower }}-{{ ansible_distribution_version }}.yml"
    - "{{ ansible_distribution|lower }}-{{ ansible_distribution_major_version }}.yml"
    - "{{ ansible_distribution|lower }}.yml"
    - "{{ ansible_os_family|lower }}.yml"

- include_tasks: configure_yum.yml
  when: ansible_pkg_mgr == 'yum'

- include_tasks: configure_dnf.yml
  when: ansible_pkg_mgr == 'dnf'

- include_tasks: configure_apt.yml
  when: ansible_pkg_mgr == 'apt'

- include_tasks: install_docker.yml
  when: ansible_pkg_mgr == 'yum' or  ansible_pkg_mgr == 'apt'

- include_tasks: install_podman.yml
  when: ansible_pkg_mgr == 'dnf'