Skip to content

Commit f500b58

Browse files
Merge pull request #37 from shaior/ensure-pkgs
Ensure java and podman are installed
2 parents 5b930ac + 88a2221 commit f500b58

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

playbooks/infra/deploy-bm-hypervisor.yml

+8
Original file line numberDiff line numberDiff line change
@@ -340,6 +340,14 @@
340340
dest: /home/{{ ansible_user }}/.ssh/id_rsa.pub
341341
mode: "0600"
342342

343+
- name: Ensure packages are installed
344+
ansible.builtin.dnf:
345+
name: "{{ item }}"
346+
state: present
347+
loop:
348+
- java
349+
- podman
350+
343351
handlers:
344352
- name: Remove installation ISO
345353
ansible.builtin.file:

0 commit comments

Comments
 (0)