exit gracefully, list exit codes

This commit is contained in:
Asif Bacchus 2020-03-26 04:02:05 -06:00
parent 8eb2c07785
commit dc75c0afea
1 changed files with 15 additions and 0 deletions

View File

@ -218,3 +218,18 @@ if [ ! -d "${borgBaseDir}/tmp" ]; then
fi
fi
export TMPDIR="${borgBaseDir}/tmp"
### exit gracefully
cleanup
exit 0
### exit codes
# 0: no errors, script completed successfully
# 1: parameter error (missing, non-existant or invalid input)
# 2: parameter missing/invalid in .borgvars file
# 3: could not create/remove borg tmp directory
#EOF