Sha256: f31b035b92e8a9df94f0dd8391c42d782642c589ac1d816bd60711032147bd12
Contents?: true
Size: 1.63 KB
Versions: 4
Compression:
Stored size: 1.63 KB
Contents
require 'puppet' Puppet::Reports.register_report(:store) do desc "Store the yaml report on disk. Each host sends its report as a YAML dump and this just stores the file on disk, in the `reportdir` directory. These files collect quickly -- one every half hour -- so it is a good idea to perform some maintenance on them if you use this report (it's the only default report)." def mkclientdir(client, dir) config = Puppet::Util::Settings.new config.setdefaults( "reportclient-#{client}".to_sym, "client-#{client}-dir" => { :default => dir, :mode => 0750, :desc => "Client dir for #{client}", :owner => 'service', :group => 'service' }, :noop => [false, "Used by settings internally."] ) config.use("reportclient-#{client}".to_sym) end def process # We don't want any tracking back in the fs. Unlikely, but there # you go. client = self.host.gsub("..",".") dir = File.join(Puppet[:reportdir], client) mkclientdir(client, dir) unless FileTest.exists?(dir) # Now store the report. now = Time.now.gmtime name = %w{year month day hour min}.collect do |method| # Make sure we're at least two digits everywhere "%02d" % now.send(method).to_s end.join("") + ".yaml" file = File.join(dir, name) begin File.open(file, "w", 0640) do |f| f.print to_yaml end rescue => detail puts detail.backtrace if Puppet[:trace] Puppet.warning "Could not write report for #{client} at #{file}: #{detail}" end # Only testing cares about the return value file end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
puppet-2.6.4 | lib/puppet/reports/store.rb |
puppet-2.6.3 | lib/puppet/reports/store.rb |
puppet-2.6.2 | lib/puppet/reports/store.rb |
puppet-2.6.1 | lib/puppet/reports/store.rb |