+ exclusiveLock
+
+ if [ $BACKUP_FORCE -eq 1 ]; then
+ scottyinfo "Backup was enforced."
+ elif latestTooOld; then
+ scottyerror "The latest backup is too old."
+ elif isNthDay; then
+ scottyinfo "This is the nth day."
+ else
+ scottyinfo "No backup has to be done. Exiting."
+ exit 0
+ fi
+
+ scottyinfo "Performing backup."
+
+ trap cleanup_abort EXIT