From ec28dcbcb9bc97d54d474de75a372d1f66a6d9ef Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Fri, 30 May 2025 17:15:48 -0700 Subject: [PATCH] os-control: install unzip and tar as they are used later in playbooks Signed-off-by: Kevin Fenzi --- playbooks/groups/os-control.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/playbooks/groups/os-control.yml b/playbooks/groups/os-control.yml index ddfbdf892b..392ff21c52 100644 --- a/playbooks/groups/os-control.yml +++ b/playbooks/groups/os-control.yml @@ -25,6 +25,16 @@ tasks: + - name: Install unzip + ansible.builtin.package: + name: unzip + state: present + + - name: Install tar + ansible.builtin.package: + name: tar + state: present + - name: Create the directories to hold the templates ansible.builtin.file: path: "/etc/openshift_apps"