From 66227f98b80ab7ee3b44be22856d2e645ef096d5 Mon Sep 17 00:00:00 2001 From: Tommaso Piccioli Date: Fri, 3 Mar 2023 17:57:19 +0100 Subject: [PATCH] using mtime instead of atime with find --- templates/postgresql-backup.sh.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/postgresql-backup.sh.j2 b/templates/postgresql-backup.sh.j2 index ad19c58..082fdde 100755 --- a/templates/postgresql-backup.sh.j2 +++ b/templates/postgresql-backup.sh.j2 @@ -46,7 +46,7 @@ create_backup_dirs() { cleanup_old_backups() { # Remove the old backups - find ${HISTDIR} -atime +${N_DAYS_TO_SPARE} -type f -exec rm -f {} \; + find ${HISTDIR} -mtime +${N_DAYS_TO_SPARE} -type f -exec rm -fv {} \; # TODELETE=$( /bin/ls "${HISTDIR}/" | awk -F '.' '{print $NF}' | sort -ruV | tail -n +${N_DAYS_TO_SPARE} ) # for i in ${TODELETE} # do