diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2010-03-09 20:53:33 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2010-03-09 20:53:33 -0300 |
commit | e172a0ed6e43c3b1a6579b90e8f4bb3a2393b110 (patch) | |
tree | 8928e7f595c4017f219479c42ba59fc3c3dd3bdb | |
parent | 6906dfdc50e26589b3384ca22c8ba2dee7247328 (diff) | |
download | puppet-drupal-e172a0ed6e43c3b1a6579b90e8f4bb3a2393b110.tar.gz puppet-drupal-e172a0ed6e43c3b1a6579b90e8f4bb3a2393b110.tar.bz2 |
Cron rule change
-rw-r--r-- | manifests/init.pp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index 4068c71..faf94ca 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -27,9 +27,8 @@ class drupal inherits pear { cron { "drupal-cron": command => "/usr/local/sbin/drupal cron &> /dev/null", user => root, - hour => "*", - minute => "10", - weekday => "*", + hour => "*/1", + minute => "15", ensure => present, require => File['/usr/local/sbin/drupal'], } |