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
No related branches found
No related tags found
No related merge requests found
Pipeline #5162 failed
...@@ -22,9 +22,12 @@ ...@@ -22,9 +22,12 @@
state: present state: present
update_cache: "yes" 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: ansible.builtin.apt:
name: 'perl-modules-5.28' name: [
'perl-modules-5.28',
'perl-modules-5.32',
]
state: absent state: absent
- name: Install/Update Perl-Pakete - name: Install/Update Perl-Pakete
...@@ -38,6 +41,6 @@ ...@@ -38,6 +41,6 @@
'libtext-csv-xs-perl', 'libtext-csv-xs-perl',
'perl', 'perl',
'perl-base', 'perl-base',
'perl-modules-5.32', 'perl-modules-5.36',
] ]
state: present state: present
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment