diff options
author | Pascal Terjan <pterjan@mageia.org> | 2011-04-05 23:22:00 +0000 |
---|---|---|
committer | Pascal Terjan <pterjan@mageia.org> | 2011-04-05 23:22:00 +0000 |
commit | 35ce4a34deac6ab57e39a093a68410f2c97c98f1 (patch) | |
tree | 06ec04358c2447efea2d555dec8b745534062d40 | |
parent | 2bd56f47b7a37b6e607eb876fa53093518ddd6ae (diff) | |
download | puppet-35ce4a34deac6ab57e39a093a68410f2c97c98f1.tar puppet-35ce4a34deac6ab57e39a093a68410f2c97c98f1.tar.gz puppet-35ce4a34deac6ab57e39a093a68410f2c97c98f1.tar.bz2 puppet-35ce4a34deac6ab57e39a093a68410f2c97c98f1.tar.xz puppet-35ce4a34deac6ab57e39a093a68410f2c97c98f1.zip |
not defining hour is not enough to remove it from current cron
-rw-r--r-- | modules/youri-check/manifests/init.pp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/youri-check/manifests/init.pp b/modules/youri-check/manifests/init.pp index b194434d..c2dab55c 100644 --- a/modules/youri-check/manifests/init.pp +++ b/modules/youri-check/manifests/init.pp @@ -40,6 +40,7 @@ class youri-check { cron { 'check': command => "youri-check -c $config test", + hour => "*", minute => 4, user => "$user", } @@ -58,6 +59,7 @@ class youri-check { cron { 'check': command => "youri-check -c $config report", + hour => "*", minute => 10, user => "$user", } |