diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2013-01-26 11:18:10 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2013-01-26 11:18:10 -0200 |
commit | e0d01e3746ed8052ef6ebe060b3f1e8ec98e3b76 (patch) | |
tree | a0a3601fa0dfd1d3094cd5beeabbc341d8146cef /manifests/cron.pp | |
parent | 26967edfd336d61dc9d71de89b559ae60efcd798 (diff) | |
download | puppet-reprepro-e0d01e3746ed8052ef6ebe060b3f1e8ec98e3b76.tar.gz puppet-reprepro-e0d01e3746ed8052ef6ebe060b3f1e8ec98e3b76.tar.bz2 |
Cleanup, variable scoping and styling
Diffstat (limited to 'manifests/cron.pp')
-rw-r--r-- | manifests/cron.pp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/cron.pp b/manifests/cron.pp index 4cc7dd8..d07bb36 100644 --- a/manifests/cron.pp +++ b/manifests/cron.pp @@ -1,8 +1,8 @@ class reprepro::cron { cron { reprepro: command => "/usr/bin/reprepro --silent -b ${reprepro::basedir} processincoming incoming", - user => reprepro, - minute => '*/5', + user => reprepro, + minute => '*/5', require => [ Package['reprepro'], File["${reprepro::basedir}/conf/distributions"] ] } } |