You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 18, 2022. It is now read-only.
Solaris fails with weekday => 'all' because 7 is not a valid weekday number per the POSIX definition of the crontab format (Vixie cron supports 0 or 7 to refer to Sunday, but the POSIX formats only describes 0, and Solaris tends to be stricter about these things).
Either weekday => 'all' should mean range(0,6) or, more simply, just set the value to '*' or 'absent', either of which will accomplish the same thing.
The text was updated successfully, but these errors were encountered:
Solaris fails with
weekday => 'all'
because7
is not a valid weekday number per the POSIX definition of the crontab format (Vixie cron supports0
or7
to refer to Sunday, but the POSIX formats only describes0
, and Solaris tends to be stricter about these things).Either
weekday => 'all'
should meanrange(0,6)
or, more simply, just set the value to'*'
or'absent'
, either of which will accomplish the same thing.The text was updated successfully, but these errors were encountered: