fixed check command

This commit is contained in:
2023-06-13 19:57:46 +02:00
parent b35d637bae
commit d6080b5f2e
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 2 --max-duration 28800 "$backup_repository" 2>&1)
borg_check_result=$(borg check --last 7 "$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 2 --max-duration 28800 "$backup_repository" 2>&1)
borg_check_result=$(borg check --last 7 "$backup_repository" 2>&1)
# Backup-Status und Speicherauslastung prüfen
if [ "$backup_status" -eq 0 ]; then