Skip to content

Commit

Permalink
upgrade python and PIP dependencies (#1732)
Browse files Browse the repository at this point in the history
  • Loading branch information
xpillons authored Oct 11, 2023
1 parent e9764b3 commit 5efeab7
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion playbooks/roles/cyclecloud/tasks/AlmaLinux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,17 @@

- name: Install pre-reqs packages
yum:
name: azure-cli, dnsmasq, unzip, java
name: azure-cli, dnsmasq, unzip, java, python39, python39-pip
state: present
lock_timeout : 180

- name: Upgrade PIP
shell: |
set -e
alternatives --set python /usr/bin/python3.9
alternatives --set python3 /usr/bin/python3.9
python3 -m pip install --upgrade pip
- name: Install CycleCloud
yum:
name: "cyclecloud8-{{cyclecloud_version}}"
Expand Down

0 comments on commit 5efeab7

Please sign in to comment.