postgres-backup: delete old backups from the correct location

This commit is contained in:
wizzdom 2024-11-23 06:03:24 +00:00
parent 6ae4ea0c8f
commit 64894d73c5
No known key found for this signature in database
GPG key ID: EEB7D796F4B09F07

View file

@ -30,7 +30,7 @@ job_name=$(echo ${NOMAD_JOB_NAME} | cut -d "/" -f 1)
nomad alloc exec $alloc_id pg_dumpall -U {{ key "postgres/username/root" }} > "${file}" nomad alloc exec $alloc_id pg_dumpall -U {{ key "postgres/username/root" }} > "${file}"
find /storage/backups/nomad/postgres/hedgedoc/postgres* -ctime +3 -exec rm {} \; || true find /storage/backups/nomad/postgres/postgres* -ctime +3 -exec rm {} \; || true
if [ -s "$file" ]; then # check if file exists and is not empty if [ -s "$file" ]; then # check if file exists and is not empty
echo "Backup successful" echo "Backup successful"