diff options
author | Olivier Blin <blino@mageia.org> | 2011-05-28 12:42:54 +0000 |
---|---|---|
committer | Olivier Blin <blino@mageia.org> | 2011-05-28 12:42:54 +0000 |
commit | 62ce6cb2daaf9d137956400c352e7390a22fd6ab (patch) | |
tree | 6546dd4e1990b09522047bfc23c8569c71bbe808 /modules | |
parent | b57accfbea8e58ed941d5c82f37c39d05c786fe7 (diff) | |
download | puppet-62ce6cb2daaf9d137956400c352e7390a22fd6ab.tar puppet-62ce6cb2daaf9d137956400c352e7390a22fd6ab.tar.gz puppet-62ce6cb2daaf9d137956400c352e7390a22fd6ab.tar.bz2 puppet-62ce6cb2daaf9d137956400c352e7390a22fd6ab.tar.xz puppet-62ce6cb2daaf9d137956400c352e7390a22fd6ab.zip |
add a cron to automatically rebuild live images every day
Diffstat (limited to 'modules')
-rw-r--r-- | modules/draklive/manifests/init.pp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/modules/draklive/manifests/init.pp b/modules/draklive/manifests/init.pp index 05452c03..459421e6 100644 --- a/modules/draklive/manifests/init.pp +++ b/modules/draklive/manifests/init.pp @@ -38,5 +38,11 @@ class draklive { subversion::snapshot { $draklive_config: source => "svn://svn.$domain/soft/images-config/draklive/trunk/", } + + cron { "build live images": + command => "$draklive_config/tools/build_live.sh", + hour => "14", + minute => 45", + } } } |