postgres-backup: delete old backups from the correct location (#77)
This commit is contained in:
parent
6ae4ea0c8f
commit
d38f434a13
1 changed files with 1 additions and 1 deletions
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue