浏览代码

Renaming postgresql backup script

Sebastian Vendt 3 月之前
父节点
当前提交
cb28381a55
共有 1 个文件被更改,包括 1 次插入1 次删除
  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 -- '{}' \;