borg check command angepasst

This commit is contained in:
2023-06-16 17:55:10 +02:00
parent 7c078cb95d
commit 408a78ebc0
2 changed files with 2 additions and 2 deletions

View File

@@ -47,7 +47,7 @@ if [ "$mount_successful" -eq 1 ]; then
done
# Backup-Integrität überprüfen
borg_check_result=$(borg check --last 7 "$backup_repository" 2>&1)
borg_check_result=$(borg check --repository-only --max-duration 43200 "$backup_repository" 2>&1)
# Backup-Status und Speicherauslastung prüfen
if [ "$backup_status" -eq 0 ]; then

View File

@@ -48,7 +48,7 @@ if [ "$mount_successful" -eq 1 ]; then
done
# Backup-Integrität überprüfen
borg_check_result=$(borg check --last 7 "$backup_repository" 2>&1)
borg_check_result=$(borg check --repository-only --max-duration 43200 "$backup_repository" 2>&1)
# Backup-Status und Speicherauslastung prüfen
if [ "$backup_status" -eq 0 ]; then