From c9d41e0dc1159467ecb2dd8f9dff4c66ad071ace Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?J=C3=B6rg=20Sachse?= <Joerg.Sachse@slub-dresden.de>
Date: Fri, 18 Mar 2022 15:21:37 +0100
Subject: [PATCH] fix: install specific version of perl-modules for Debian 11
 Bullseye

---
 tasks/install_packages.yml | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/tasks/install_packages.yml b/tasks/install_packages.yml
index 099a783..54f2971 100644
--- a/tasks/install_packages.yml
+++ b/tasks/install_packages.yml
@@ -21,6 +21,11 @@
     state: present
     update_cache: "yes"
 
+- name: uninstall outdated perl-modules-5.28 package from Debian 11 Bullseye VMs
+  apt:
+    name: 'perl-modules-5.28'
+    state: absent
+
 - name: Install/Update Perl-Pakete
   apt:
     name: [
@@ -32,6 +37,6 @@
       'libtext-csv-xs-perl',
       'perl',
       'perl-base',
-      'perl-modules',
+      'perl-modules-5.32',
     ]
     state: present
-- 
GitLab