Add script for pre-fetch metadata for eumd, SC-2522

This commit is contained in:
Patrik Holmqvist 2025-01-16 10:10:03 +01:00
parent 9b6a98a92c
commit 5564e41766
Signed by: pahol
GPG key ID: 5D5B0D4E93F77273

View file

@ -0,0 +1,18 @@
#!/usr/bin/env bash
set -e
# Verify and update the repo. Previously run by cron but to mitigate/remove
# race condion it moved here.
cd /var/cache/metadata_r1.komreg.net && make update
cd /opt/metadata
incoming_dir=/opt/mdqp/work/incoming_metadata
mkdir -p ${incoming_dir}
tmp_dir=$(mktemp -d)
#rsync -a production-idp/*.xml production-sp/*.xml ${tmp_dir}/
rsync -a --delete ${tmp_dir}/ ${incoming_dir}/
rm -rf "${tmp_dir}"