add more testing containers

This commit is contained in:
Matthew Stobbs
2025-02-23 03:11:12 -07:00
parent 57b3b93a18
commit 6397899d88
10 changed files with 82 additions and 29 deletions

View File

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

View File

@@ -5,11 +5,16 @@
ansible.builtin.set_fact:
rhname: "{%if ansible_distribution == 'Fedora' %}fedora{% else %}epel{% endif %}"
- name: Set deps for distros
ansible.builtin.set_fact:
zfs:
deps: "{% if ansible_distribution == 'Fedora' %}{{ pkgconfig.zfs.build_deps.Fedora }}{% else %}{{ pkgconfig.zfs.build_deps[ansible_os_family] }}{% endif %}"
- name: Set ZFS config
ansible.builtin.set_fact:
zfs:
repo_pkg: "{{ pkgconfig.zfs.repo_base }}/{{ rhname }}/zfs-release-{{ pkgconfig.zfs[rhname].release }}{{ rpm_dist.stdout }}.noarch.rpm"
deps: "{{ pkgconfig.zfs.build_deps[ansible_os_family] }}"
deps: "{{ zfs.deps }}"
pkgs: "{{ pkgconfig.zfs.pkgs[ansible_os_family] }}"
skip_gpg_check: "{{ rhname == 'fedora' }}"
release: "{{ ansible_distribution_release }}"