We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e5e1cb commit c55a1e6Copy full SHA for c55a1e6
1 file changed
ansible/roles/baselayout/tasks/partials/repo/rhel9.yml
@@ -8,7 +8,19 @@
8
key: https://dl.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-9
9
state: present
10
11
-- name: install EPEL 8
+- name: install EPEL 9
12
ansible.builtin.dnf:
13
name: https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm
14
15
+
16
+- name: install Python 3.12
17
+ ansible.builtin.dnf:
18
+ name: ['python3.12','python3.12-pip']
19
+ state: present
20
+ notify: package updated
21
22
+- name: update python3 package alternatives
23
+ community.general.alternatives:
24
+ link: /usr/bin/python3
25
+ name: python3
26
+ path: /usr/bin/python3.12
0 commit comments