matrix-docker-ansible-deploy/roles/custom/matrix-base/tasks/util/ensure_openssl_installed.yml

13 lines
494 B
YAML
Raw Normal View History

---
# This is for both RedHat 7 and 8
- ansible.builtin.include_tasks: "{{ role_path }}/tasks/util/ensure_openssl_installed_redhat.yml"
when: ansible_os_family == 'RedHat'
2022-01-20 05:58:39 +00:00
# This is for both Debian and Raspbian
- ansible.builtin.include_tasks: "{{ role_path }}/tasks/util/ensure_openssl_installed_debian.yml"
2022-01-20 05:58:39 +00:00
when: ansible_os_family == 'Debian'
- ansible.builtin.include_tasks: "{{ role_path }}/tasks/util/ensure_openssl_installed_archlinux.yml"
when: ansible_os_family == 'Archlinux'