Corrected '*/60 * * * *' entries in crontab to be "0 * * * *'.
This has the same
meaning (run every hour), but uses valid syntax that works across Linux distros.
The */60 syntax, while technically invalid, is interpreted as intended on RHEL/Rocky
and Ubuntu distros, but is rejected as invalid on SuSE Linux (where it is righteously
rejected). Replacing '*/60' with '0' has the same symantic mealing but uses a
syntax valid across platforms.