ansible-role-configure-post.../templates/autopostgresqlbackup_post_script.j2
2023-11-04 13:07:10 +01:00

14 lines
398 B
Django/Jinja

### {{ ansible_managed }}
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