Explorar o código

Renaming postgresql backup script

Sebastian Vendt hai 3 meses
pai
achega
cb28381a55
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      postgresqlBackup/backup_postgresql.sh

+ 1 - 1
postgresqlBackup/backup_postgresql.sh

@@ -11,4 +11,4 @@ fullBackupFileName="${backupFilepath}${filename}"
 docker exec -i ${dockerContainerName} /bin/bash -c "PGPASSWORD=${dbpasswd} pg_dump --username ${dbUser} ${dbName}" > $fullBackupFileName
 
 #Backup rotation - Delete everything older than rotationDays
-find $backupFilePath -type f -mtime +$rotationDays -name '*.sql' -execdir rm -- '{}' \;
+find $backupFilepath -type f -mtime +$rotationDays -name '*.sql' -execdir rm -- '{}' \;