summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2011-11-30 19:58:23 -0200
committerSilvio Rhatto <rhatto@riseup.net>2011-11-30 19:58:23 -0200
commitc07d03094a219c7b8e8ffc94879f282909ea3c17 (patch)
tree20033d83531540e269122ec0b80b6ba609fa8ee7
parenta773f3ef540184502b9d8129e249878a8c6d6d74 (diff)
downloadpuppet-reprepro-c07d03094a219c7b8e8ffc94879f282909ea3c17.tar.gz
puppet-reprepro-c07d03094a219c7b8e8ffc94879f282909ea3c17.tar.bz2
Using noop instead of ensure for exec resources
-rw-r--r--manifests/cron.pp2
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,
}
}