Dears,
i configured script in crontab to run every 10 minutes and its not working at all. I dont see any entry in configured log path (/var/log/cron
)
"*/10 * * * * example_script.sh"
However if i change crontab syntax to following:
"* * * * * example_script.sh"
It executing script every 10 minutes. I see that in configured log path Crond is running, it even has been restarted. No errors in cron log file. example_script.sh is just an example, i have it configured with absolute path. Also it works accordingly with the same crontab configuration but on the other system which serves for the same purpose (just in another network zone)
Why is that happening? Are there any config files allowing to modify crontab syntax itself?