remove support for 20.04, only 22.04 and 24.04 now

This commit is contained in:
packetcat 2024-06-29 16:19:45 -04:00
parent 9ce8df4e84
commit f8e43c894b
1 changed files with 1 additions and 5 deletions

View File

@ -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