From c8454a3a1c29dda9d88ad2cabefda2cb88e8ebed Mon Sep 17 00:00:00 2001 From: dweinholz Date: Fri, 6 Oct 2023 08:11:07 +0200 Subject: [PATCH] Update 001-apt.yml --- cluster/roles/common/tasks/001-apt.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/cluster/roles/common/tasks/001-apt.yml b/cluster/roles/common/tasks/001-apt.yml index 69cc344a..16ca2fa1 100644 --- a/cluster/roles/common/tasks/001-apt.yml +++ b/cluster/roles/common/tasks/001-apt.yml @@ -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