From 9386dc7c56e4493cea2bfe31fa589ffa2b744bac Mon Sep 17 00:00:00 2001 From: Logan Gorence Date: Mon, 27 Dec 2021 21:08:43 +0000 Subject: [PATCH] Adjust cron expression and config comments. --- foundation-core/src/main/resources/backup.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/foundation-core/src/main/resources/backup.yaml b/foundation-core/src/main/resources/backup.yaml index 8756981..acf0b7b 100644 --- a/foundation-core/src/main/resources/backup.yaml +++ b/foundation-core/src/main/resources/backup.yaml @@ -1,10 +1,13 @@ # Configuration of backup scheduling, expressed by cron expressions. schedule: # Cron expression to use for the backup schedule. This is not standard cron, but rather a subset - # that is given to us by the Quartz Scheduler. + # that is given to us by the Quartz Scheduler. You may use http://www.cronmaker.com/ as a + # reference to build out custom cron expressions that are compatible. It should be noted that + # the second field is automatically added to the cron expression, as most typical cron expressions + # do not include it. # Examples: # "0 3 * * ?" -> every day at 3 AM - # "0 3 * * SUN" -> every Sunday at 3 AM + # "0 3 ? * SUN" -> every Sunday at 3 AM cron: "" # Configuration of S3 service to upload back-ups to.