From: Silvio Rhatto Date: Wed, 25 May 2011 19:07:52 +0000 (-0300) Subject: Taking care of debian bug 625626 X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=a3b6309a68d4a3300750c1bf8a7ebea7f302bfa2;p=puppet-puppet.git Taking care of debian bug 625626 --- diff --git a/manifests/puppetd.pp b/manifests/puppetd.pp index 5b0d094..f45c9ac 100644 --- a/manifests/puppetd.pp +++ b/manifests/puppetd.pp @@ -87,4 +87,12 @@ class puppetd inherits puppet { group => root, mode => 0644; } + + # restore to original state after the following bug is addressed: + # http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=625626 + if $lsbdistcodename == 'squeeze' { + file { "/etc/logrotate.d/puppetmaster": + ensure => absent, + } + } }