36 lines
1.1 KiB
Django/Jinja
36 lines
1.1 KiB
Django/Jinja
#!/bin/bash
|
|
|
|
# Configuration
|
|
BACKUP_USER="{{ backup.user }}" # Remote SSH username
|
|
BACKUP_HOST="{{ backup.host }}" # Remote SSH server
|
|
BACKUP_PATH="{{ backup.path }}" # Remote backup folder
|
|
BORG_PASSPHRASE="{{ backup.passphrase }}" # Encryption password (in plain text)
|
|
BACKUP_NAME="backup-$(date +'%Y-%m-%d')" # Name of the backup archive
|
|
BACKUP_REPO="ssh://$BACKUP_USER@$BACKUP_HOST/$BACKUP_PATH" # Borg repository location
|
|
|
|
# Environment variable for Borg encryption
|
|
export BORG_PASSPHRASE
|
|
|
|
# Run Borg check
|
|
if [ "$1" == "--verify-data" ]; then
|
|
echo "Starting Borg check with data verification..."
|
|
borg check --verify-data $BACKUP_REPO
|
|
else
|
|
echo "Starting Borg check..."
|
|
borg check $BACKUP_REPO
|
|
fi
|
|
|
|
# Capture Borg exit status
|
|
BORG_EXIT=$?
|
|
|
|
# Check if the backup succeeded or was partially successful (exit code 0 or 1)
|
|
if [ $BORG_EXIT -eq 0 ] || [ $BORG_EXIT -eq 1 ]; then
|
|
echo "Check succeeded (with return code $BORG_EXIT)!"
|
|
else
|
|
echo "Check failed (with return code $BORG_EXIT)!"
|
|
exit 1
|
|
fi
|
|
|
|
# Unset the encryption password for security
|
|
unset BORG_PASSPHRASE
|