diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2011-11-30 19:58:23 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2011-11-30 19:58:23 -0200 |
commit | c07d03094a219c7b8e8ffc94879f282909ea3c17 (patch) | |
tree | 20033d83531540e269122ec0b80b6ba609fa8ee7 | |
parent | a773f3ef540184502b9d8129e249878a8c6d6d74 (diff) | |
download | puppet-reprepro-c07d03094a219c7b8e8ffc94879f282909ea3c17.tar.gz puppet-reprepro-c07d03094a219c7b8e8ffc94879f282909ea3c17.tar.bz2 |
Using noop instead of ensure for exec resources
-rw-r--r-- | manifests/cron.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/cron.pp b/manifests/cron.pp index c401918..a2e4a10 100644 --- a/manifests/cron.pp +++ b/manifests/cron.pp @@ -14,6 +14,6 @@ class reprepro::cron::disabled inherits reprepro::cron { Exec["reprepro -b $basedir createsymlinks", "reprepro -b $basedir export", "/usr/local/bin/reprepro-export-key", "/usr/local/bin/reprepro-export-key-update"] { - ensure => absent, + noop => true, } } |