Add script for pre-fetch metadata for eumd, SC-2522
This commit is contained in:
parent
9b6a98a92c
commit
5564e41766
1 changed files with 18 additions and 0 deletions
18
eumd-common/overlay/opt/mdqp/pre.d/10-fetching-metadata
Executable file
18
eumd-common/overlay/opt/mdqp/pre.d/10-fetching-metadata
Executable 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}"
|
Loading…
Add table
Reference in a new issue