ansible-bootstrap-rocky9/roles/root-cert/tasks/main.yml
2026-05-11 15:54:07 +03:00

16 lines
366 B
YAML

---
#- name: Check that the root certificate exists
# become: no
# local_action: "stat path={{ install_root_cert_pem }}"
# register: result
# failed_when: not result.stat.exists
- include: debian.yml
when: ansible_os_family == "Debian"
- include: red_hat.yml
when: ansible_os_family == "RedHat"
- include: darwin.yml
when: ansible_os_family == "Darwin"