postgres-backup: delete old backups from the correct location (#77)

This commit is contained in:
wizzdom 2024-11-24 09:31:28 +00:00 committed by GitHub
parent 6ae4ea0c8f
commit d38f434a13
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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}"
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
echo "Backup successful"