Run dehydrated cronjob at random time.

This commit is contained in:
Darren 'Tadgy' Austin 2026-04-04 13:06:07 +00:00
commit 8a8920529e

View file

@ -1,6 +1,5 @@
#!/bin/bash
# Delay the run for 15 hours (from midnight) and then run at a random time within 3 hours after that.
sleep $(( 54000 + (RANDOM % 10800) ))
/usr/sbin/dehydrated -c >/dev/null
# Run this job in the background.
( # Delay the run for 15 hours (from midnight) and then run at a random time within 3 hours after that.
sleep $(( 54000 + (RANDOM % 10800) ))
/opt/sbin/dehydrated -c >/dev/null ) &