mirror of
https://github.com/offen/docker-volume-backup.git
synced 2024-11-10 00:30:29 +01:00
Frederik Ring
da8c63f755
* Retry on lock being unavailable * Refactor locking to return plain error * Collect LockedTime in stats * Add test case * Add documentation for LOCK_TIMEOUT * Log in case lock needs to be awaited * Release resources created for awaiting lock
33 lines
652 B
Bash
Executable File
33 lines
652 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
cd $(dirname $0)
|
|
|
|
mkdir -p local
|
|
|
|
docker-compose up -d
|
|
|
|
# sleep until a backup is guaranteed to have happened on the 1 minute schedule
|
|
sleep 100
|
|
|
|
docker-compose down --volumes
|
|
|
|
if [ ! -f ./local/conf.tar.gz ]; then
|
|
echo "[TEST:FAIL] Config from file was not used."
|
|
exit 1
|
|
fi
|
|
echo "[TEST:PASS] Config from file was used."
|
|
|
|
if [ ! -f ./local/other.tar.gz ]; then
|
|
echo "[TEST:FAIL] Run on same schedule did not succeed."
|
|
exit 1
|
|
fi
|
|
echo "[TEST:PASS] Run on same schedule succeeded."
|
|
|
|
if [ -f ./local/never.tar.gz ]; then
|
|
echo "[TEST:FAIL] Unexpected file was found."
|
|
exit 1
|
|
fi
|
|
echo "[TEST:PASS] Unexpected cron did not run."
|