From 64894d73c594c99765293be3069246d42338cf3e Mon Sep 17 00:00:00 2001 From: wizzdom Date: Sat, 23 Nov 2024 06:03:24 +0000 Subject: [PATCH] postgres-backup: delete old backups from the correct location --- jobs/services/postgres-backup.hcl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jobs/services/postgres-backup.hcl b/jobs/services/postgres-backup.hcl index af2c7c0..e5e70a1 100644 --- a/jobs/services/postgres-backup.hcl +++ b/jobs/services/postgres-backup.hcl @@ -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"