From 6ad4f098d976f2f1fbd6cf79af2612cbd30906f0 Mon Sep 17 00:00:00 2001 From: David Galloway Date: Mon, 28 Jun 2021 17:16:10 -0400 Subject: [PATCH] container-host: Install pip too This was needed on CentOS8 and Ubuntu Focal Jenkins builders. Signed-off-by: David Galloway --- roles/container-host/tasks/container_mirror.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/roles/container-host/tasks/container_mirror.yml b/roles/container-host/tasks/container_mirror.yml index 72ced9ab..93e23f83 100644 --- a/roles/container-host/tasks/container_mirror.yml +++ b/roles/container-host/tasks/container_mirror.yml @@ -11,9 +11,11 @@ content: "{{ container_mirror_cert }}" with_items: "{{ container_mirror_cert_paths }}" -- name: Ensure git is installed +- name: Ensure installation dependencies are installed package: - name: git + name: + - git + - python-pip state: present tags: - registries-conf-ctl -- 2.47.3