I need to implement a cron job that runs twice a day at random time.
The objective is to deploy an rpm package containing the cron task but the cron task won't execute at the same time on deployed machines
I read a lot of similar problems on StackOverflow but none answered my question and i cznnot find an appropriate solution.
I do not want to use the sleep method because this would involve a sleep random(43200) and I think it's too much
Here you have a simple bash script that will generate two separate cron jobs for the first run and the second one.
Please change the
cmdvariable to your command of choice or script. (Note: If setting a script, make sure it is executable!)