From ff3df210e69191a49ed851fa5019c904c8bbb522 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?J=C3=B6rg=20Sachse?= <Joerg.Sachse@slub-dresden.de>
Date: Wed, 19 Jan 2022 11:50:53 +0100
Subject: [PATCH] feat: install new dependency for deepfixity (libcryptx-perl)

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

diff --git a/tasks/install_test_scripts.yml b/tasks/install_test_scripts.yml
index f4e27d3..ee768b5 100644
--- a/tasks/install_test_scripts.yml
+++ b/tasks/install_test_scripts.yml
@@ -3,6 +3,7 @@
 
 - name: install prerequisites
   apt:
+    update_cache: true
     name: [
       'libdata-printer-perl',
       'libdatetime-format-http-perl',
@@ -11,7 +12,11 @@
     state: latest
 - name: install prerequisites for deep_fixity
   apt:
-    name: "libdigest-crc-perl"
+    update_cache: true
+    name: [
+      'libcryptx-perl',
+      'libdigest-crc-perl',
+    ]
     state: latest
 # This plugin is part of the community.general collection (version 4.0.2), which might not be installed on your computer.
 # https://docs.ansible.com/ansible/latest/collections/community/general/cpanm_module.html
-- 
GitLab