Issue #2575 has been updated by Nigel Kersten. Status changed from Needs More Information to Rejected
This is correct. Use arrays to specify this. ---------------------------------------- Bug #2575: Puppet not accepting valid cron time intervals https://projects.puppetlabs.com/issues/2575 Author: Jason Antman Status: Rejected Priority: Normal Assignee: Category: cron Target version: Affected Puppet version: 0.24.8 Keywords: Branch: Puppet appears to not accept valid time intervals which include commas (or perhaps dashes). <pre> #0,30 * * * * php /scripts/hourly.php > /dev/null cron { hourly: command => "php /scripts/hourly.php > /dev/null", user => root, minute => '0,30', ensure => present, } #55 7 * * 1-5 /website/rucompliant/3.1/site/scripts/nightly_update cron { nightly_update: command => "/website/rucompliant/3.1/site/scripts/nightly_update", user => root, hour => '7', minute => '55', weekday => '1-5', ensure => present, } </pre> <pre> Aug 27 09:22:06 resnet2 puppetd[7856]: Could not create hourly: Parameter minute failed: 0,30 is not a valid minute at /etc/puppet/main/modules/edu_rutgers_css_resnet/manifests/init.pp:125 Aug 27 09:22:07 resnet2 puppetd[7856]: Configuration could not be instantiated: Parameter minute failed: 0,30 is not a valid minute at /etc/puppet/main/modules/edu_rutgers_css_resnet/manifests/init.pp:125; using cached catalog </pre> This appears to be a severe issue, and greatly impacts our ability to use Puppet to manage production systems. We're running 0.24.8 on CentOS 5.3. -- You have received this notification because you have either subscribed to it, or are involved in it. To change your notification preferences, please click here: http://projects.puppetlabs.com/my/account -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/puppet-bugs?hl=en.
