14 lines
398 B
Text
14 lines
398 B
Text
|
### {{ 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
|