ansible-role-configure-post.../templates/autopostgresqlbackup_post_script.j2
2024-05-04 12:36:28 +02:00

15 lines
417 B
Django/Jinja

#!/bin/bash
{{ ansible_managed | comment }}
source /etc/default/autopostgresqlbackup
# available variables:
# strings, i.e. character sequences
echo "$BACKUPDIR"
[ -z "$BACKUPDIR" ] && echo >&2 "Invalid / unknown BACKUPDIR" && exit 1
# Loeschen der alten Backups
find "${BACKUPDIR}/monthly" "${BACKUPDIR}/weekly" "${BACKUPDIR}/daily" -type f -mtime +{{ autopostgresqlbackup_delete_backups_after_days }} -delete