diff --git a/postgresql/files/postgresql-backup.sh b/postgresql/files/postgresql-backup.sh index 64d20820..3247c7bf 100755 --- a/postgresql/files/postgresql-backup.sh +++ b/postgresql/files/postgresql-backup.sh @@ -41,10 +41,10 @@ create_backup_dirs() { cleanup_old_backups() { # Remove the old backups - TODELETE=`ls /var/lib/pgsql/backups/history | awk -F '.' '{print $NF}' | sort -ruV | tail -n +${N_DAYS_TO_SPARE}` + TODELETE=`ls ${$BACKUPDIR}/history | awk -F '.' '{print $NF}' | sort -ruV | tail -n +${N_DAYS_TO_SPARE}` for i in ${TODELETE} do - rm -f /var/lib/pgsql/backups/history/*.$i + rm -f ${$BACKUPDIR}/history/*.$i done }