From e200f371dc0f729b98416b84cbec49d5c29260a6 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Mon, 31 Aug 2020 13:26:28 -0700 Subject: [PATCH] fas_client: change cron to generate new aliases every 10min instead of once a day There seems to be a increase in number of people wanting to use their fedoraproject.org alias right away. So, increase the time we generate it. It currently takes 14seconds to run it. Signed-off-by: Kevin Fenzi --- roles/fas_client/files/fas-client-aliases.cron | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/fas_client/files/fas-client-aliases.cron b/roles/fas_client/files/fas-client-aliases.cron index d26aa9cf5c..1249905814 100644 --- a/roles/fas_client/files/fas-client-aliases.cron +++ b/roles/fas_client/files/fas-client-aliases.cron @@ -1 +1 @@ -00 19 * * * root /usr/local/bin/lock-wrapper fasClient "/bin/sleep $(($RANDOM \% 45)); /usr/bin/fasClient -ia | /usr/local/bin/nag-once fassync 1d 2>&1" +*/10 * * * * root /usr/local/bin/lock-wrapper fasClient "/bin/sleep $(($RANDOM \% 45)); /usr/bin/fasClient -ia | /usr/local/bin/nag-once fassync 1d 2>&1"