library/roles/postgresql/files/postgresql-backup.sh: Fix a typo.

This commit is contained in:
Andrea Dell'Amico 2018-11-15 16:05:13 +01:00
parent 3b83553f9e
commit d8cb04249c
1 changed files with 2 additions and 2 deletions

View File

@ -41,10 +41,10 @@ create_backup_dirs() {
cleanup_old_backups() {
# Remove the old backups
TODELETE=`ls ${$BACKUPDIR}/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 ${$BACKUPDIR}/history/*.$i
rm -f ${BACKUPDIR}/history/*.$i
done
}