Skip to content

Commit

Permalink
Update 001-apt.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
dweinholz authored Oct 6, 2023
1 parent d94c926 commit c8454a3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions cluster/roles/common/tasks/001-apt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,21 +57,21 @@
update_cache: "yes"
upgrade: "yes"

- name: Import deadsnake PPA for python3.8
- name: Import deadsnake PPA for python3.9
ansible.builtin.apt_repository:
repo: ppa:deadsnakes/ppa
update_cache: true
tags: always

- name: Install python3.8
- name: Install python3.9
ansible.builtin.apt:
state: present
name: python3.8
name: python3.9

- name: Install Python 3.8 and reset selection to auto
- name: Install Python 3.9 and reset selection to auto
community.general.alternatives:
name: python
path: /usr/bin/python3.8
path: /usr/bin/python3.9
link: /usr/bin/python
state: auto

Expand Down

0 comments on commit c8454a3

Please sign in to comment.