Skip to content

Commit

Permalink
fix: wrong regex for wal retention (#1026)
Browse files Browse the repository at this point in the history
  • Loading branch information
nickmansrob authored Dec 6, 2024
1 parent 937815a commit 39a6c8f
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 39a6c8f

Please sign in to comment.