overlay files for signer server in test environment

This commit is contained in:
Maria Haider 2023-09-15 13:16:10 +02:00
parent 3fc6dcc1bd
commit 7042cf653e
Signed by: mariah
GPG key ID: 7414A760CA747E57
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,23 @@
#!/usr/bin/env bash
set -e
lock_file="/opt/mdqp/rsync_lock"
if [ ! -r "${lock_file}" ]; then
echo "No lock_file (${lock_file}) found. Skipping rsync to publishers."
exit 0
else
sync_host=$(cat "${lock_file}")
fi
my_hostname=$(hostname -f)
if [ "${sync_host}x" != "${my_hostname}x" ]; then
echo "I'm not the sync host (${sync_host}). Skipping rsync to publishers."
exit 0
fi
for publisher in natpub-test-1.komreg.net ; do
echo "rsync to ${publisher}"
rsync -a --exclude "/status/" --delete /opt/mdqp/work/signed_metadata/ ${publisher}:
done

View file

@ -0,0 +1 @@
natmd-test-1.komreg.net