mirror of
https://github.com/FAUSheppy/athq-vm-management
synced 2025-12-06 13:51:35 +01:00
9 lines
294 B
Bash
9 lines
294 B
Bash
#!/bin/bash
|
|
if ssh backup-atlantis-array@atlantishq.de [[ -e /home/backup-atlantis-array/lock.rsync ]]; then
|
|
echo "Lockfile found. Waiting 10s.."
|
|
sleep 10
|
|
else
|
|
rsync backup-atlantis-array@atlantishq.de:/home/backup-atlantis-array/\* . -rP \
|
|
--remove-source-files
|
|
fi
|