Skip to content

Commit

Permalink
Merge pull request #31 from natifridman/epel-release
Browse files Browse the repository at this point in the history
Install epel release and required packages
  • Loading branch information
openshift-merge-bot[bot] authored Jan 22, 2025
2 parents a818abc + 3cb361c commit 54646f9
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions playbooks/infra/deploy-vm-bastion-libvirt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -239,3 +239,19 @@
ansible.builtin.hostname:
name: "{{ hostname }}"
become: true

- name: Ensure epel repo present
ansible.builtin.dnf:
name: "https://dl.fedoraproject.org/pub/epel/epel-release-latest-{{ ansible_distribution_major_version }}.noarch.rpm"
state: present
become: true

- name: Install required packages
ansible.builtin.dnf:
name:
- openconnect
- git
- podman
- tmux
state: present
become: true

0 comments on commit 54646f9

Please sign in to comment.