I found an issue adding a cron job.
To run every 10 minutes starting at 5 past every hour, I want to use:
5/10 * * * *
But this gives me an error, "bad minute".
It works fine with:
*/10 * * * *
But it should be possible to choose when you want the cron to start running of the hour. Clearly a bug. Is there a fix for this? Please let me know if you need any further clarification.
To run every 10 minutes starting at 5 past every hour, I want to use:
5/10 * * * *
But this gives me an error, "bad minute".
It works fine with:
*/10 * * * *
But it should be possible to choose when you want the cron to start running of the hour. Clearly a bug. Is there a fix for this? Please let me know if you need any further clarification.