ExtremeFiretop
Very Senior Member
Updated one of the APs without any issue. Worked great.
I am seeing this messageCron job hook already exists in ‘/jffs/scripts/services-start’ script
repeatedly on both the AP devices. On my main router, I’m not seeing any MerlinAU notices.
View attachment 57310
View attachment 57311
Hi @vlord FYI I think we found the bug for your case, the code used to say:
Code:
if [ "$((currentTimeSecs - notifyTimeSecs))" -gt "$postponeTimeSecs" ]
So basically it had to be greater, "equal too" was not valid.
After the updates, it will be:
Code:
"if [ "$((currentTimeSecs - notifyTimeSecs))" -ge "$postponeTimeSecs" ]"
The sneaky thing went right over my eyes. This will allow equal values, and this will be addressed in PR 168 and be in release 1.0.9 along with better messaging around the cron jobs to clarify the timing expectations.
(For things like time changes that happened on the 10th, etc)
Thanks for reporting!
Last edited: