-
Notifications
You must be signed in to change notification settings - Fork 117
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
20 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,24 @@ | ||
#!/bin/sh | ||
|
||
echo "Starting Backup" | ||
echo "Starting Backup" >> /var/log/cron.log | ||
|
||
restic backup /data --tag=${RESTIC_TAG?"Missing environment variable RESTIC_TAG"} >> /var/log/cron.log | ||
restic backup /data --tag=${RESTIC_TAG?"Missing environment variable RESTIC_TAG"} > /var/log/backup-last.log 2>&1 | ||
rc=$? | ||
if [[ $rc == 0 ]]; then | ||
echo "Backup Successfull" >> /var/log/cron.log | ||
else | ||
echo "Backup Failed with Status ${rc}" >> /var/log/cron.log | ||
restic unlock >> /var/log/cron.log 2>&1 | ||
fi | ||
|
||
if [ -n "${RESTIC_FORGET_ARGS}" ]; then | ||
echo "Forget about old snapshots based on RESTIC_FORGET_ARGS = ${RESTIC_FORGET_ARGS}" | ||
restic forget ${RESTIC_FORGET_ARGS} | ||
echo "Forget about old snapshots based on RESTIC_FORGET_ARGS = ${RESTIC_FORGET_ARGS}" >> /var/log/cron.log | ||
restic forget ${RESTIC_FORGET_ARGS} >> /var/log/backup-last.log 2>&1 | ||
|
||
if [[ $rc == 0 ]]; then | ||
echo "Forget Successfull" >> /var/log/cron.log | ||
else | ||
echo "Forget Failed with Status ${rc}" >> /var/log/cron.log | ||
restic unlock >> /var/log/cron.log 2>&1 | ||
fi | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#!/bin/sh | ||
|
||
docker build --rm -t backup-test . | ||
docker build --rm -t restic-backup . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters