From 6383959d28a92e9e1a4995f03b3e29a78a563478 Mon Sep 17 00:00:00 2001 From: David Galloway Date: Fri, 11 Jun 2021 11:30:22 -0400 Subject: [PATCH] container-host: Ensure git is installed Signed-off-by: David Galloway --- roles/container-host/tasks/container_mirror.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/roles/container-host/tasks/container_mirror.yml b/roles/container-host/tasks/container_mirror.yml index 254e21c7..72ced9ab 100644 --- a/roles/container-host/tasks/container_mirror.yml +++ b/roles/container-host/tasks/container_mirror.yml @@ -11,6 +11,13 @@ content: "{{ container_mirror_cert }}" with_items: "{{ container_mirror_cert_paths }}" +- name: Ensure git is installed + package: + name: git + state: present + tags: + - registries-conf-ctl + - name: Install registries-conf-ctl pip: name: git+https://github.com/sebastian-philipp/registries-conf-ctl -- 2.47.3