os-control: install unzip and tar as they are used later in playbooks

Signed-off-by: Kevin Fenzi <kevin@scrye.com>
This commit is contained in:
Kevin Fenzi 2025-05-30 17:15:48 -07:00
parent 105b8d394f
commit ec28dcbcb9

View file

@ -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"