mirror of
https://github.com/lobaro/restic-backup-docker.git
synced 2026-04-05 04:38:51 +00:00
Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
47d29529e9 | ||
|
|
97c74a94a7 |
@@ -1,5 +1,9 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## v1.4.2
|
||||||
|
### Removed
|
||||||
|
* Execute a repository check after prune was passed as a parameter in the forget call - use RESTIC_CHECK_CRON Var instead
|
||||||
|
|
||||||
## v1.4.1
|
## v1.4.1
|
||||||
### Changed
|
### Changed
|
||||||
* Execute a repository check after prune was passed as a parameter in the forget call
|
* Execute a repository check after prune was passed as a parameter in the forget call
|
||||||
|
|||||||
21
backup.sh
21
backup.sh
@@ -48,8 +48,6 @@ else
|
|||||||
copyErrorLog
|
copyErrorLog
|
||||||
fi
|
fi
|
||||||
|
|
||||||
forgetSuccess=false
|
|
||||||
|
|
||||||
if [[ $backupRC == 0 ]] && [ -n "${RESTIC_FORGET_ARGS}" ]; then
|
if [[ $backupRC == 0 ]] && [ -n "${RESTIC_FORGET_ARGS}" ]; then
|
||||||
echo "Forget about old snapshots based on RESTIC_FORGET_ARGS = ${RESTIC_FORGET_ARGS}"
|
echo "Forget about old snapshots based on RESTIC_FORGET_ARGS = ${RESTIC_FORGET_ARGS}"
|
||||||
restic forget ${RESTIC_FORGET_ARGS} >> ${lastLogfile} 2>&1
|
restic forget ${RESTIC_FORGET_ARGS} >> ${lastLogfile} 2>&1
|
||||||
@@ -57,28 +55,9 @@ if [[ $backupRC == 0 ]] && [ -n "${RESTIC_FORGET_ARGS}" ]; then
|
|||||||
logLast "Finished forget at $(date)"
|
logLast "Finished forget at $(date)"
|
||||||
if [[ $rc == 0 ]]; then
|
if [[ $rc == 0 ]]; then
|
||||||
echo "Forget Successful"
|
echo "Forget Successful"
|
||||||
forgetSuccess=true
|
|
||||||
else
|
else
|
||||||
echo "Forget Failed with Status ${rc}"
|
echo "Forget Failed with Status ${rc}"
|
||||||
restic unlock
|
restic unlock
|
||||||
forgetSuccess=false
|
|
||||||
copyErrorLog
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo "$RESTIC_FORGET_ARGS" | grep -q prune
|
|
||||||
wasPruneRC=$?
|
|
||||||
|
|
||||||
if [ "$forgetSuccess" = true ] && [ $wasPruneRC -eq 0 ]; then
|
|
||||||
echo "Checking repository after forget / prune"
|
|
||||||
restic check >> ${lastLogfile} 2>&1
|
|
||||||
rc=$?
|
|
||||||
logLast "Finished check at $(date)"
|
|
||||||
if [ $rc = 0 ]; then
|
|
||||||
echo "Check Successful"
|
|
||||||
else
|
|
||||||
echo "Check Failed with Status ${rc}"
|
|
||||||
restic unlock
|
|
||||||
copyErrorLog
|
copyErrorLog
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|||||||
Reference in New Issue
Block a user