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’ scriptrepeatedly 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: 
			
		
	
								
								
									
	
		
			
		
	
								
							
							 
	
 
 
		
 If you were still having issues after the latest test I would have to keep investigating, but considering it worked once the lock file was released it all makes sense and my theory holds true. I'm hoping the answer above should hopefully address those situations going forwards.
 If you were still having issues after the latest test I would have to keep investigating, but considering it worked once the lock file was released it all makes sense and my theory holds true. I'm hoping the answer above should hopefully address those situations going forwards. 
 
		 
 
		 
 
		 
 
		 
 
		 
 
		