Your mask is not correct.
It would match whenever the hour value is 1. However, single-digit values are 0-padded to 2 (4 for year) digits; that is, 1 o'clock is actually 01.
But, you should not match the hour at all, but the minutes. The minute value will match a fixed value once every hour - which is what you'll want:
Examples:
#trigger every hour, on the hour:
bind time - "00 * * * *" proc
#trigger every hour, 15 minutes past the hour:
bind time - "15 * * * *" proc
#trigger every hour, 5 minutes past - more compact mask:
bind time - "05 *" proc
nml375 wrote:Your mask is not correct.
It would match whenever the hour value is 1. However, single-digit values are 0-padded to 2 (4 for year) digits; that is, 1 o'clock is actually 01.
But, you should not match the hour at all, but the minutes. The minute value will match a fixed value once every hour - which is what you'll want:
Examples:
#trigger every hour, on the hour:
bind time - "00 * * * *" proc
#trigger every hour, 15 minutes past the hour:
bind time - "15 * * * *" proc
#trigger every hour, 5 minutes past - more compact mask:
bind time - "05 *" proc