From a6cf69090241303ac05d2600b0e093f0aab2c629 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?J=C3=B6rg=20Sachse?= <joerg.sachse@slub-dresden.de>
Date: Tue, 16 Jul 2024 09:50:16 +0200
Subject: [PATCH] fix: set correct path for Ansible Vault password file

---
 .gitlab-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 79eed55..b8cbe79 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -23,10 +23,10 @@ test-job:
   script:
     # make sure that Ansible Vaults are present and can be decrypted
     - echo "${VAULT_VALIDATORS}" > ../lza_validators.pass
-    - export ANSIBLE_VAULT_IDENTITY_LIST="../../../lza_validators.pass"
+    - export ANSIBLE_VAULT_IDENTITY_LIST="../lza_validators.pass"
     - rm -rf ../ansible_vaults/
     - git clone https://gitlab+deploy-token-25:${VAULT_ACCESS_TOKEN}@git.slub-dresden.de/slub-referat-2-3/ansible_vaults.git ../ansible_vaults/;
-    - for FILE in $( find / -name "lza_validators.pass" ); do ls -l $FILE; done
+    # - for FILE in $( find /home/gitlab-runner/builds/ -name "lza_validators.pass" ); do ls -l $FILE; done
     # run Molecule tests
     - molecule syntax --scenario-name default
     # We cannot use `molecule lint` anymore because:
-- 
GitLab