We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello! How can I use comma into cronjob? I just want to enumerate some dates in the schedule. For example, this is my erb template:
some_cronjob: minute: 0 hour: 0 date: 1,16 command: "some_command"
some_cronjob:
minute: 0
hour: 0
date: 1,16
command: "some_command"
And I got this:
0 0 116 * * root some_command
Commas are ignored. I just need to enumerate days. What do i need? Thanks for answer in advance!
The text was updated successfully, but these errors were encountered:
@v3n1kk specify the date as an array eg: ['1', '16']
Sorry, something went wrong.
No branches or pull requests
Hello! How can I use comma into cronjob? I just want to enumerate some dates in the schedule.
For example, this is my erb template:
some_cronjob:
minute: 0
hour: 0
date: 1,16
command: "some_command"
And I got this:
0 0 116 * * root some_command
Commas are ignored. I just need to enumerate days.
What do i need? Thanks for answer in advance!
The text was updated successfully, but these errors were encountered: