overlay files for signer server in test environment
This commit is contained in:
parent
3fc6dcc1bd
commit
7042cf653e
2 changed files with 24 additions and 0 deletions
23
natmd-test-common/overlay/opt/mdqp/post.d/97-rsync
Executable file
23
natmd-test-common/overlay/opt/mdqp/post.d/97-rsync
Executable 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
|
1
natmd-test-common/overlay/opt/mdqp/rsync_lock
Normal file
1
natmd-test-common/overlay/opt/mdqp/rsync_lock
Normal file
|
@ -0,0 +1 @@
|
|||
natmd-test-1.komreg.net
|
Loading…
Add table
Reference in a new issue