From 1b193e755427fdbc458e1de813873daf839cd66b Mon Sep 17 00:00:00 2001 From: Kyle Lexmond Date: Sun, 29 Dec 2024 00:39:07 +0000 Subject: [PATCH] Install iproute since that seems to be a dependency for ansible to discover interfaces --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 78aca17..59fdec2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -222,6 +222,8 @@ jobs: run: while [ "$(sudo podman exec ${{ matrix.version }} systemctl is-system-running)" != "running" ]; do sleep 5; done - name: Install firewalld run: sudo podman exec ${{ matrix.version }} dnf -y install firewalld python3-firewall procps-ng + - name: Install iproute so ansible can discover interfaces + run: sudo podman exec ${{ matrix.version }} dnf -y install iproute - name: Install required dependencies from Ansible Galaxy run: sudo podman exec ${{ matrix.version }} ansible-galaxy install -r /etc/ansible/roles/ansible-role-openvpn/requirements.yml - name: Make sure ansible connection is sane