summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2011-02-23 18:15:48 -0300
committerSilvio Rhatto <rhatto@riseup.net>2011-02-23 18:15:48 -0300
commit53415dafdf5d914cc36e2365b64284aa0bf538e2 (patch)
treee887d263fd7bf870eab4d89f20b3957d1b5abd3f
parent911353cab4122ef1b6ed6f120e8fb03c26aca021 (diff)
downloadpuppet-puppet-53415dafdf5d914cc36e2365b64284aa0bf538e2.tar.gz
puppet-puppet-53415dafdf5d914cc36e2365b64284aa0bf538e2.tar.bz2
Turning of puppetlast command
-rw-r--r--manifests/puppetmasterd.pp6
1 files changed, 5 insertions, 1 deletions
diff --git a/manifests/puppetmasterd.pp b/manifests/puppetmasterd.pp
index 04b226e..c3504fa 100644
--- a/manifests/puppetmasterd.pp
+++ b/manifests/puppetmasterd.pp
@@ -96,7 +96,7 @@ class puppetmasterd {
hour => "0",
minute => "0",
weekday => "0",
- ensure => present,
+ ensure => absent,
require => File["/usr/local/sbin/puppetlast"],
}
@@ -111,7 +111,11 @@ class puppetmasterd {
# custom puppetlast command, thanks to immerda module:
# http://git.puppet.immerda.ch/?p=module-puppet.git;a=summary
+ #
+ # right now it's not working, see
+ # https://labs.riseup.net/code/issues/2515
file { "/usr/local/sbin/puppetlast":
+ ensure => absent,
source => "puppet:///modules/puppet/lastruncheck",
owner => root,
group => root,