Add package installs for different Debian versions

This commit is contained in:
Joshua Boniface 2023-09-01 15:42:27 -04:00
parent ae40227ea1
commit 044a14fa6d
1 changed files with 15 additions and 1 deletions

View File

@ -163,7 +163,21 @@
- "wireshark-common wireshark-common/install-setuid boolean true"
tags: base-packages
- name: install common packages (all arch)
- name: install common packages (buster)
apt:
name:
- python
when: debian_codename == 'buster'
tag: base-packages
- name: install common packages (bullseye)
apt:
name:
- python-is-python3
when: debian_codename == 'bullseye'
tag: base-packages
- name: install common packages (all versions)
apt:
name:
- debconf-utils