From e8221e34deab0868209bc090b425c9fcfcb9162a Mon Sep 17 00:00:00 2001 From: crowetic <5431064+crowetic@users.noreply.github.com> Date: Wed, 24 May 2023 18:58:35 -0700 Subject: [PATCH] Create auto-fix-GUI-cron new cron modification for new auto-fix-GUI implementation for GUI-enabled machines. :) --- auto-fix-GUI-cron | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 auto-fix-GUI-cron diff --git a/auto-fix-GUI-cron b/auto-fix-GUI-cron new file mode 100644 index 0000000..3cc1507 --- /dev/null +++ b/auto-fix-GUI-cron @@ -0,0 +1,14 @@ +# cron is a tool used to automate system processes in the background. It does not +# display anything while runniing. +# you can use the following formula to remember how it works... +# you need an entry for every *, there are 5 stars. each star represents +# a timeframe... minute, hour, day of month, month, day of week + +# the cron settings we have here represent running the command EVERY 5 DAYS at 1:01 AM +# 1 minute past the hour, 1 hour, */5 means every 5th day, then * means every month, and * means every week. + +# if you have this cron, it is because your machine was determined to have a GUI, and you were switched to using GUI +# startup method for auto-fix script, and the cron startup method was removed. + + 1 1 */5 * * ./auto-fix-qortal.sh > log-auto-fix-GUI.log 2>&1 +