From a7ac589886f3f9a7e4cb411f26fb8e091e372d87 Mon Sep 17 00:00:00 2001 From: David Galloway Date: Thu, 23 Dec 2021 11:53:14 -0500 Subject: [PATCH] container-host: distro-specific secrets file `container_packages` was getting set to `podman` for all downstream distros. That won't work for Ubuntu so we'll use distro-specific secrets overrides. Signed-off-by: David Galloway --- roles/container-host/tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/container-host/tasks/main.yml b/roles/container-host/tasks/main.yml index 42001a3..83f5013 100644 --- a/roles/container-host/tasks/main.yml +++ b/roles/container-host/tasks/main.yml @@ -10,7 +10,7 @@ - name: Including distro specific variables include_vars: "{{ item }}" with_first_found: - - "{{ secrets_path }}/container-host.yml" + - "{{ secrets_path }}/container-host/{{ ansible_distribution | lower }}_{{ ansible_distribution_major_version }}.yml" - "{{ ansible_distribution | lower }}_{{ ansible_distribution_major_version }}.yml" - "{{ package_manager }}_systems.yml" - empty.yml -- 2.39.5