aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Terjan <pterjan@mageia.org>2011-04-02 12:30:20 +0000
committerPascal Terjan <pterjan@mageia.org>2011-04-02 12:30:20 +0000
commita76b2cb6e8c872a30c9a0ba035d678f5d3b01ed3 (patch)
treef356475d7b532801811e84e820ffab0351412a90
parent1a888419b6796e215c8a11fa9de10229b5cff1c0 (diff)
downloadpuppet-a76b2cb6e8c872a30c9a0ba035d678f5d3b01ed3.tar
puppet-a76b2cb6e8c872a30c9a0ba035d678f5d3b01ed3.tar.gz
puppet-a76b2cb6e8c872a30c9a0ba035d678f5d3b01ed3.tar.bz2
puppet-a76b2cb6e8c872a30c9a0ba035d678f5d3b01ed3.tar.xz
puppet-a76b2cb6e8c872a30c9a0ba035d678f5d3b01ed3.zip
Fix syntax
-rw-r--r--modules/youri-check/manifests/init.pp6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/youri-check/manifests/init.pp b/modules/youri-check/manifests/init.pp
index b1b2ea1f..9214fe85 100644
--- a/modules/youri-check/manifests/init.pp
+++ b/modules/youri-check/manifests/init.pp
@@ -30,8 +30,8 @@ class youri-check {
cron { 'check':
command => "youri-check -c $config test",
- hour => [0, 6, 12, 18]
- minute => 4
+ hour => [0, 6, 12, 18],
+ minute => 4,
user => "$user",
}
@@ -56,7 +56,7 @@ class youri-check {
cron { 'check':
command => "youri-check -c $config report",
- hour => [1, 7, 13, 19]
+ hour => [1, 7, 13, 19],
user => "$user",
}