CHECK_INTERVAL or SUB_CHECK_INTERVAL in module settings. If set to 1, will check everytime. Ever other number is for n days after last check. FORCE_CHECK for check if repository has been setup os now renamed FORCE_VERIFY but FORCE_CHECK is currently still honored but deprecated all *function* shell scripts will abort if run on their own Print info on last check time if set in info block Internal updates: All separator lines are now printf strings for central control. All module used config/settings file names use $MODULE name Check functionality is in its own file
25 lines
712 B
Bash
25 lines
712 B
Bash
#!/usr/bin/env bash
|
|
|
|
if [ -z "${MODULE}" ]; then
|
|
echo "Script cannot be run on its own";
|
|
exit 1;
|
|
fi;
|
|
|
|
# unset borg settings
|
|
unset BORG_BASE_DIR BORG_UNKNOWN_UNENCRYPTED_REPO_ACCESS_IS_OK BORG_RELOCATED_REPO_ACCESS_IS_OK
|
|
# error abort without duration and error notice
|
|
if [ $# -ge 1 ] && [ "$1" = "1" ]; then
|
|
printf "${PRINTF_MASTER_BLOCK}" "ERROR" "$(date +'%F %T')" "${MODULE}";
|
|
else
|
|
# delete lock file
|
|
if [ -f "${BASE_FOLDER}${BACKUP_LOCK_FILE}" ]; then
|
|
rm "${BASE_FOLDER}${BACKUP_LOCK_FILE}";
|
|
fi;
|
|
# running time calculation
|
|
DURATION=$[ $(date +'%s')-$START ];
|
|
echo "=== [Run time: $(convert_time ${DURATION})]";
|
|
printf "${PRINTF_MASTER_BLOCK}" "END" "$(date +'%F %T')" "${MODULE}";
|
|
fi;
|
|
|
|
# __END__
|