Skip to content
Snippets Groups Projects
Commit a19102fd authored by Jörg Sachse's avatar Jörg Sachse
Browse files

fix: install appropriate perl-modules package for Debian 12 Bookworm and uninstall older versions

parent 93b1a496
Loading
Checking pipeline status
......@@ -22,9 +22,12 @@
state: present
update_cache: "yes"
- name: uninstall outdated perl-modules-5.28 package from Debian 11 Bullseye VMs
- name: uninstall outdated perl-modules packages from Debian 12 Bookworm VMs
ansible.builtin.apt:
name: 'perl-modules-5.28'
name: [
'perl-modules-5.28',
'perl-modules-5.32',
]
state: absent
- name: Install/Update Perl-Pakete
......@@ -38,6 +41,6 @@
'libtext-csv-xs-perl',
'perl',
'perl-base',
'perl-modules-5.32',
'perl-modules-5.36',
]
state: present
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment