From 366de0ae3764a19ef65262092550d8fc83156dbb Mon Sep 17 00:00:00 2001 From: Paul Caskey Date: Thu, 25 Apr 2019 09:50:04 -0500 Subject: [PATCH] Update setupcron.sh --- container_files/bin/setupcron.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/container_files/bin/setupcron.sh b/container_files/bin/setupcron.sh index 2061672..8612b09 100644 --- a/container_files/bin/setupcron.sh +++ b/container_files/bin/setupcron.sh @@ -8,7 +8,7 @@ CRONFILE=/opt/tier/tier-cron #build crontab file with random start time between midnight and 3:59am echo "#send daily beacon to TIER Central" > ${CRONFILE} echo $(expr $RANDOM % 59) $(expr $RANDOM % 3) "* * * /usr/bin/sendtierbeacon.sh >> /var/log/cron.log 2>&1" >> ${CRONFILE} -echo "#rotate IdP data sealer key" > ${CRONFILE} +echo "#rotate IdP data sealer key" >> ${CRONFILE} echo "0 1 * * * /opt/shibboleth-idp/bin/rotateSealerKey.sh >> /var/log/cron.log 2>&1" >> ${CRONFILE} chmod 644 ${CRONFILE}