From b9f58f2cdcf34045043f7472a855390b693c0c87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dennis=20K=C3=B6rner?= <79668910+netzwergehh@users.noreply.github.com> Date: Thu, 3 Jun 2021 14:01:01 +0200 Subject: [PATCH] Create example.crontab --- mirror/example.crontab | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 mirror/example.crontab diff --git a/mirror/example.crontab b/mirror/example.crontab new file mode 100644 index 0000000..2f463a2 --- /dev/null +++ b/mirror/example.crontab @@ -0,0 +1,9 @@ +#This will synchronize your mirror at 0:50, 4:50, 8:50, 12:50, 16:50, 20:50 +50 */6 * * * /path/to/your/rocky-rsync-mirror.sh > /dev/null 2>&1 + +#This will synchronize your mirror at 2:25, 6:25, 10:25, 14:25, 18:25, 22:25 +25 2,6,10,14,18,22 * * * /path/to/your/rocky-rsync-mirror.sh > /dev/null 2>&1 + +#This will synchronize your mirror every hour at 15 minutes past the hour. +#Only use if you are using our example script +15 * * * * /path/to/your/rocky-rsync-mirror.sh > /dev/null 2>&1