Files
ansible_role_package/tasks/config/hashicorp.yml
2025-02-20 15:03:54 -07:00

14 lines
356 B
YAML

- name: Set OS name for RedHat family
when:
- ansible_os_famly == 'RedHat'
ansible.builtin.set_fact:
hashicorp:
repo: "{{ pkgconfig.hashicorp.Linux[rpm_dist.stdout] }}"
- name: Set repo for debian
when:
- ansible_os_family == 'Debian'
ansible.builtin.set_Fact:
hashicorp:
repo: "{{ pkgconfig.hashicorp.Linux.Debian }}"