diff options
author | Michael Scherer <misc@mageia.org> | 2012-01-07 23:44:50 +0000 |
---|---|---|
committer | Michael Scherer <misc@mageia.org> | 2012-01-07 23:44:50 +0000 |
commit | 3f40f141daf05782b8db8e58cd93d357a5f1ae66 (patch) | |
tree | ed67425e236d9142a2f3270c26f946b1e77979cf /modules | |
parent | f4e436bc6c3c1dcc05eb1002510f2cfe3e52a3ea (diff) | |
download | puppet-3f40f141daf05782b8db8e58cd93d357a5f1ae66.tar puppet-3f40f141daf05782b8db8e58cd93d357a5f1ae66.tar.gz puppet-3f40f141daf05782b8db8e58cd93d357a5f1ae66.tar.bz2 puppet-3f40f141daf05782b8db8e58cd93d357a5f1ae66.tar.xz puppet-3f40f141daf05782b8db8e58cd93d357a5f1ae66.zip |
add the missing cronjob of schedbot, since it was somehow removed
from valstar, thus blocking the BS ( should have been added sooner,
and it may have been removed as side effect of one of my refactoring )
Diffstat (limited to 'modules')
-rw-r--r-- | modules/buildsystem/manifests/init.pp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/modules/buildsystem/manifests/init.pp b/modules/buildsystem/manifests/init.pp index 8deed56f..2fe8671b 100644 --- a/modules/buildsystem/manifests/init.pp +++ b/modules/buildsystem/manifests/init.pp @@ -85,6 +85,12 @@ class buildsystem { include youri_submit include buildsystem::check_missing_deps include buildsystem::signbot + + cron { "dispatch jobs": + user => $sched_login, + command => "emi ; ulri", + minute => "*/2", + } } class buildnode inherits base { |