Unfortunately, the Cloverleaf timer it set up more to handle absolute times than periodic times. In Cron it would be easy to do something like:
*/5 * * * * myscript
In Cloverleaf using the timer mode of fileset, etc. you must do something like:
0 0,5,10,15,20,25,30,35,40,45,50,55 * * * *
This says to run at 0 seconds of every 5 minutes of every hour, etc. It is important to set seconds to 0. Leaving it at * would make it try to run every second.
Maybe someone could submit an enhancement request to implement periodic timing similar to the Cron paradigm. 😀