remove support for 20.04, only 22.04 and 24.04 now
This commit is contained in:
parent
9ce8df4e84
commit
f8e43c894b
|
@ -1,12 +1,8 @@
|
|||
---
|
||||
# This playbook contains common plays that will be run all nodes.
|
||||
|
||||
- name: Install python-apt, aptitude, and debconf-utils (20.04)
|
||||
shell: apt-get update && apt-get -y install python-apt aptitude debconf-utils
|
||||
when: ansible_distribution_release == 'focal'
|
||||
- name: Install python-apt, aptitude, and debconf-utils (22.04)
|
||||
shell: apt-get update && apt-get -y install python3-apt aptitude debconf-utils
|
||||
when: ansible_distribution_release == 'jammy'
|
||||
shell: apt update && apt -y install python3-apt aptitude debconf-utils
|
||||
- name: Do any package upgrades
|
||||
apt: upgrade=dist
|
||||
- name: Set default locale to en_US.UTF-8
|
||||
|
|
Loading…
Reference in New Issue