diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2013-01-26 10:51:12 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2013-01-26 10:51:12 -0200 |
commit | 068174330714d8391409805de47a0d50871b0488 (patch) | |
tree | 435310fdb3c949ce6f3d3a4e3c125ae639e38706 | |
parent | c57e16764692815a8eb6f2b7eb0ccca2b018d632 (diff) | |
download | puppet-reprepro-068174330714d8391409805de47a0d50871b0488.tar.gz puppet-reprepro-068174330714d8391409805de47a0d50871b0488.tar.bz2 |
Fixing reprepro::cron::disabled
-rw-r--r-- | manifests/cron/disabled.pp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/manifests/cron/disabled.pp b/manifests/cron/disabled.pp index 60924a8..dd3062c 100644 --- a/manifests/cron/disabled.pp +++ b/manifests/cron/disabled.pp @@ -1,5 +1,6 @@ class reprepro::cron::disabled inherits reprepro::cron { Cron['reprepro'] { - ensure => absent, + ensure => absent, + require => undef, } } |