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:
parent
105b8d394f
commit
ec28dcbcb9
1 changed files with 10 additions and 0 deletions
|
@ -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"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue