Skip to content

Commit

Permalink
fix: wrong regex for wal retention
Browse files Browse the repository at this point in the history
  • Loading branch information
davidumea committed Nov 18, 2024
1 parent 06ca273 commit 74c927d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion postgres-appliance/scripts/postgres_backup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ while read -r name last_modified rest; do
# count how many backups will remain after we remove everything up to certain date
((LEFT=LEFT+1))
fi
done < <($WAL_E backup-list 2> /dev/null | sed '0,/^name\s*\(last_\)\?modified\s*/d')
done < <($WAL_E backup-list 2> /dev/null | sed '0,/^\(backup_\)\?name\s*\(last_\)\?modified\s*/d')

# we want keep at least N backups even if the number of days exceeded
if [ -n "$BEFORE" ] && [ $LEFT -ge $DAYS_TO_RETAIN ]; then
Expand Down

0 comments on commit 74c927d

Please sign in to comment.