Merge pull request #100 from jacksgt/patch-1

Use exit code 0 when running in manual mode
This commit is contained in:
Dave Conroy
2022-02-06 16:59:00 -08:00
committed by GitHub

View File

@@ -529,7 +529,7 @@ print_debug "Backup routines Initialized on $(date)"
### Go back to Sleep until next Backup time
if var_true $MANUAL ; then
exit 1;
exit 0;
else
sleep $(($DB_DUMP_FREQ*60))
fi