From 4a1729d06c1e08155a69de7cd4cb0120599eacca Mon Sep 17 00:00:00 2001 From: Ewoud Kohl van Wijngaarden Date: Tue, 6 Apr 2021 16:54:05 +0200 Subject: [PATCH] Drop Puppetserver integration This was split off to theforeman/puppetserver_foreman and doesn't need to live in this module anymore. --- .sync.yml | 1 - files/external_node_v2.rb | 437 - files/foreman-report_v2.rb | 199 - manifests/puppetmaster.pp | 117 - manifests/puppetmaster/params.pp | 79 - spec/classes/foreman_puppetmaster_spec.rb | 108 - spec/spec_helper.rb | 1 - spec/static_fixtures/fake.host.fqdn.com.yaml | 97 - spec/static_fixtures/report-2.6.12-noops.yaml | 627 -- spec/static_fixtures/report-2.6.2-debug.yaml | 706 -- spec/static_fixtures/report-2.6.5-errors.yaml | 60 - .../report-3.5.1-catalog-errors.yaml | 205 - spec/static_fixtures/report-empty.json | 37 - spec/static_fixtures/report-empty.yaml | 31 - spec/static_fixtures/report-format-2.json | 132 - spec/static_fixtures/report-format-2.yaml | 413 - spec/static_fixtures/report-format-3.json | 106 - spec/static_fixtures/report-format-3.yaml | 283 - spec/static_fixtures/report-format-6.json | 226 - spec/static_fixtures/report-format-6.yaml | 9760 ----------------- .../report-log-preprocessed.yaml | 290 - spec/unit/foreman_external_node_spec.rb | 95 - spec/unit/foreman_report_processor_spec.rb | 125 - 23 files changed, 14135 deletions(-) delete mode 100644 files/external_node_v2.rb delete mode 100644 files/foreman-report_v2.rb delete mode 100644 manifests/puppetmaster.pp delete mode 100644 manifests/puppetmaster/params.pp delete mode 100644 spec/classes/foreman_puppetmaster_spec.rb delete mode 100644 spec/static_fixtures/fake.host.fqdn.com.yaml delete mode 100644 spec/static_fixtures/report-2.6.12-noops.yaml delete mode 100644 spec/static_fixtures/report-2.6.2-debug.yaml delete mode 100644 spec/static_fixtures/report-2.6.5-errors.yaml delete mode 100644 spec/static_fixtures/report-3.5.1-catalog-errors.yaml delete mode 100644 spec/static_fixtures/report-empty.json delete mode 100644 spec/static_fixtures/report-empty.yaml delete mode 100644 spec/static_fixtures/report-format-2.json delete mode 100644 spec/static_fixtures/report-format-2.yaml delete mode 100644 spec/static_fixtures/report-format-3.json delete mode 100644 spec/static_fixtures/report-format-3.yaml delete mode 100644 spec/static_fixtures/report-format-6.json delete mode 100644 spec/static_fixtures/report-format-6.yaml delete mode 100644 spec/static_fixtures/report-log-preprocessed.yaml delete mode 100644 spec/unit/foreman_external_node_spec.rb delete mode 100644 spec/unit/foreman_report_processor_spec.rb diff --git a/.sync.yml b/.sync.yml index 168cf09f7..ca2732eb8 100644 --- a/.sync.yml +++ b/.sync.yml @@ -7,4 +7,3 @@ Gemfile: spec/spec_helper.rb: requires: - webmock/rspec - - puppet/reports diff --git a/files/external_node_v2.rb b/files/external_node_v2.rb deleted file mode 100644 index 7af418728..000000000 --- a/files/external_node_v2.rb +++ /dev/null @@ -1,437 +0,0 @@ -#!/usr/bin/env ruby - -# Script usually acts as an ENC for a single host, with the certname supplied as argument -# if 'facts' is true, the YAML facts for the host are uploaded -# ENC output is printed and cached -# -# If --push-facts is given as the only arg, it uploads facts for all hosts and then exits. -# Useful in scenarios where the ENC isn't used. - -require 'rbconfig' -require 'yaml' - -if RbConfig::CONFIG['host_os'] =~ /freebsd|dragonfly/i - $settings_file ||= '/usr/local/etc/puppet/foreman.yaml' -else - $settings_file ||= File.exist?('/etc/puppetlabs/puppet/foreman.yaml') ? '/etc/puppetlabs/puppet/foreman.yaml' : '/etc/puppet/foreman.yaml' -end - -SETTINGS = YAML.load_file($settings_file) - -# Default external encoding -if defined?(Encoding) - Encoding.default_external = Encoding::UTF_8 -end - -def url - SETTINGS[:url] || raise("Must provide URL in #{$settings_file}") -end - -def puppetdir - SETTINGS[:puppetdir] || raise("Must provide puppet base directory in #{$settings_file}") -end - -def puppetuser - SETTINGS[:puppetuser] || 'puppet' -end - -def stat_file(certname) - FileUtils.mkdir_p "#{puppetdir}/yaml/foreman/" - "#{puppetdir}/yaml/foreman/#{certname}.yaml" -end - -def tsecs - SETTINGS[:timeout] || 10 -end - -def thread_count - return SETTINGS[:threads].to_i if not SETTINGS[:threads].nil? and SETTINGS[:threads].to_i > 0 - require 'facter' - processors = Facter.value(:processorcount).to_i - processors > 0 ? processors : 1 -end - -class Http_Fact_Requests - include Enumerable - - def initialize - @results_array = [] - end - - def <<(val) - @results_array << val - end - - def each(&block) - @results_array.each(&block) - end - - def pop - @results_array.pop - end -end - -class FactUploadError < StandardError; end - -require 'etc' -require 'net/http' -require 'net/https' -require 'fileutils' -require 'timeout' -begin - require 'json' -rescue LoadError - # Debian packaging guidelines state to avoid needing rubygems, so - # we only try to load it if the first require fails (for RPMs) - begin - require 'rubygems' rescue nil - require 'json' - rescue LoadError => e - puts "You need the `json` gem to use the Foreman ENC script" - # code 1 is already used below - exit 2 - end -end - -def empty_values_hash?(facts_file) - facts = File.read(facts_file) - puppet_facts = YAML::load(facts.gsub(/\!ruby\/object.*$/,'')) - - puppet_facts['values'].empty? -end - -def process_host_facts(certname) - f = "#{puppetdir}/yaml/facts/#{certname}.yaml" - if File.size(f) != 0 - if empty_values_hash?(f) - puts "Empty values hash in fact file #{f}, not uploading" - return 0 - end - - req = generate_fact_request(certname, f) - begin - upload_facts(certname, req) if req - return 0 - rescue => e - $stderr.puts "During fact upload occured an exception: #{e}" - return 1 - end - else - $stderr.puts "Fact file #{f} does not contain any fact" - return 2 - end -end - -def process_all_facts(http_requests) - Dir["#{puppetdir}/yaml/facts/*.yaml"].each do |f| - certname = File.basename(f, ".yaml") - # Skip empty host fact yaml files - if File.size(f) != 0 - if empty_values_hash?(f) - puts "Empty values hash in fact file #{f}, not uploading" - next - end - req = generate_fact_request(certname, f) - if http_requests - http_requests << [certname, req] - elsif req - upload_facts(certname, req) - end - else - $stderr.puts "Fact file #{f} does not contain any fact" - end - end -end - -def quote_macs! facts - # Adds single quotes to all unquoted mac addresses in the raw yaml fact string - # if they might otherwise be interpreted as base60 ints - facts.gsub!(/: ([0-5][0-9](:[0-5][0-9]){5})$/,": '\\1'") -end - -def build_body(certname,filename) - # Strip the Puppet:: ruby objects and keep the plain hash - facts = File.read(filename) - quote_macs! facts if YAML.load('22:22:22:22:22:22').is_a? Integer - puppet_facts = YAML::load(facts.gsub(/\!ruby\/object.*$/,'')) - hostname = puppet_facts['values']['fqdn'] || certname - - # if there is no environment in facts - # get it from node file ({puppetdir}/yaml/node/ - unless puppet_facts['values'].key?('environment') || puppet_facts['values'].key?('agent_specified_environment') - node_filename = filename.sub('/facts/', '/node/') - if File.exist?(node_filename) - node_yaml = File.read(node_filename) - node_data = YAML::load(node_yaml.gsub(/\!ruby\/object.*$/,'')) - if node_data.key?('environment') - puppet_facts['values']['environment'] = node_data['environment'] - end - end - end - - begin - require 'facter' - puppet_facts['values']['puppetmaster_fqdn'] = Facter.value(:fqdn).to_s - rescue LoadError - puppet_facts['values']['puppetmaster_fqdn'] = `hostname -f`.strip - end - - # filter any non-printable char from the value, if it is a String - puppet_facts['values'].each do |key, val| - if val.is_a? String - puppet_facts['values'][key] = val.scan(/[[:print:]]/).join - end - end - - {'facts' => puppet_facts['values'], 'name' => hostname, 'certname' => certname} -end - -def initialize_http(uri) - res = Net::HTTP.new(uri.host, uri.port) - res.open_timeout = SETTINGS[:timeout] - res.read_timeout = SETTINGS[:timeout] - res.use_ssl = uri.scheme == 'https' - if res.use_ssl? - if SETTINGS[:ssl_ca] && !SETTINGS[:ssl_ca].empty? - res.ca_file = SETTINGS[:ssl_ca] - res.verify_mode = OpenSSL::SSL::VERIFY_PEER - else - res.verify_mode = OpenSSL::SSL::VERIFY_NONE - end - if SETTINGS[:ssl_cert] && !SETTINGS[:ssl_cert].empty? && SETTINGS[:ssl_key] && !SETTINGS[:ssl_key].empty? - res.cert = OpenSSL::X509::Certificate.new(File.read(SETTINGS[:ssl_cert])) - res.key = OpenSSL::PKey::RSA.new(File.read(SETTINGS[:ssl_key]), nil) - end - end - res -end - -def generate_fact_request(certname, filename) - # Temp file keeping the last run time - stat = stat_file("#{certname}-push-facts") - last_run = File.exists?(stat) ? File.stat(stat).mtime.utc : Time.now - 365*24*60*60 - last_fact = File.exists?(filename) ? File.stat(filename).mtime.utc : Time.at(0) - if last_fact > last_run - begin - uri = URI.parse("#{url}/api/hosts/facts") - req = Net::HTTP::Post.new(uri.request_uri) - req.add_field('Accept', 'application/json,version=2' ) - req.content_type = 'application/json' - req.body = build_body(certname, filename).to_json - req - rescue => e - raise "Could not generate facts for Foreman: #{e}" - end - end -end - -def cache(certname, result) - File.open(stat_file(certname), 'w') {|f| f.write(result) } -end - -def read_cache(certname) - File.read(stat_file(certname)) -rescue => e - raise "Unable to read from Cache file: #{e}" -end - -def enc(certname) - uri = URI.parse("#{url}/node/#{certname}?format=yml") - req = Net::HTTP::Get.new(uri.request_uri) - initialize_http(uri).start do |http| - response = http.request(req) - - unless response.code == "200" - raise "Error retrieving node #{certname}: #{response.class}\nCheck Foreman's /var/log/foreman/production.log for more information." - end - response.body - end -end - -def upload_facts(certname, req) - return nil if req.nil? - uri = URI.parse("#{url}/api/hosts/facts") - begin - initialize_http(uri).start do |http| - response = http.request(req) - if response.code.start_with?('2') - cache("#{certname}-push-facts", "Facts from this host were last pushed to #{uri} at #{Time.now}\n") - else - $stderr.puts "#{certname}: During the fact upload the server responded with: #{response.code} #{response.message}. Error is ignored and the execution continues." - $stderr.puts response.body - end - end - rescue => e - $stderr.puts "During fact upload occured an exception: #{e}" - raise FactUploadError, "Could not send facts to Foreman: #{e}" - end -end - -def upload_facts_parallel(http_fact_requests, wait = true) - t = thread_count.times.map { - Thread.new(http_fact_requests) do |fact_requests| - while factref = fact_requests.pop - certname = factref[0] - httpobj = factref[1] - if httpobj - upload_facts(certname, httpobj) - end - end - end - } - if wait - t.each(&:join) - end -end - -def watch_and_send_facts(parallel) - begin - require 'inotify' - rescue LoadError - puts "You need the `ruby-inotify` (not inotify!) gem to watch for fact updates" - exit 2 - end - - watch_descriptors = [] - pending = [] - threads = thread_count - last_send = Time.now - - inotify_limit = `sysctl fs.inotify.max_user_watches`.gsub(/[^\d]/, '').to_i - - inotify = Inotify.new - - # actually we need only MOVED_TO events because puppet uses File.rename after tmp file created and flushed. - # see lib/puppet/util.rb near line 469 - inotify.add_watch("#{puppetdir}/yaml/facts", Inotify::CREATE | Inotify::MOVED_TO ) - - yamls = Dir["#{puppetdir}/yaml/facts/*.yaml"] - - if yamls.length > inotify_limit - puts "Looks like your inotify watch limit is #{inotify_limit} but you are asking to watch at least #{yamls.length} fact files." - puts "Increase the watch limit via the system tunable fs.inotify.max_user_watches, exiting." - exit 2 - end - - yamls.each do |f| - begin - watch_descriptors[inotify.add_watch(f, Inotify::CLOSE_WRITE)] = f - end - end - - inotify.each_event do |ev| - fn = watch_descriptors[ev.wd] - add_watch = false - - if !fn - # inotify returns basename for renamed file as ev.name - # but we need full path - fn = "#{puppetdir}/yaml/facts/#{ev.name}" - add_watch = true - end - - if File.extname(fn) != ".yaml" - next - end - - if add_watch || (ev.mask & Inotify::ONESHOT) - watch_descriptors[inotify.add_watch(fn, Inotify::CLOSE_WRITE)] = fn - end - - if fn - certname = File.basename(fn, ".yaml") - req = generate_fact_request certname, fn - if parallel - pending << [certname,req] - else - upload_facts(certname,req) - end - end - if parallel && (pending.length >= threads || ((last_send + 5) < Time.now)) - if pending.length > 0 - upload_facts_parallel(pending, false) - pending = [] - end - last_send = Time.now - end - end -end - -# Actual code starts here - -if __FILE__ == $0 then - # Setuid to puppet user if we can - begin - Process::GID.change_privilege(Etc.getgrnam(puppetuser).gid) unless Etc.getpwuid.name == puppetuser - Process::UID.change_privilege(Etc.getpwnam(puppetuser).uid) unless Etc.getpwuid.name == puppetuser - # Facter (in thread_count) tries to read from $HOME, which is still /root after the UID change - ENV['HOME'] = Etc.getpwnam(puppetuser).dir - # Change CWD to the determined home directory before continuing to make - # sure we don't reside in /root or anywhere else we don't have access - # permissions - Dir.chdir ENV['HOME'] - rescue - $stderr.puts "cannot switch to user #{puppetuser}, continuing as '#{Etc.getpwuid.name}'" - end - - begin - no_env = ARGV.delete("--no-environment") - watch = ARGV.delete("--watch-facts") - push_facts_parallel = ARGV.delete("--push-facts-parallel") - push_facts = ARGV.delete("--push-facts") - if watch && ! ( push_facts || push_facts_parallel ) - raise "Cannot watch for facts without specifying --push-facts or --push-facts-parallel" - end - if push_facts - # push all facts files to Foreman and don't act as an ENC - if ARGV.empty? - process_all_facts(false) - else - process_host_facts(ARGV[0]) - end - elsif push_facts_parallel - http_fact_requests = Http_Fact_Requests.new - process_all_facts(http_fact_requests) - upload_facts_parallel(http_fact_requests) - else - certname = ARGV[0] || raise("Must provide certname as an argument") - # - # query External node - begin - result = "" - Timeout.timeout(tsecs) do - # send facts to Foreman - enable 'facts' setting to activate - # if you use this option below, make sure that you don't send facts to foreman via the rake task or push facts alternatives. - # - if SETTINGS[:facts] - req = generate_fact_request certname, "#{puppetdir}/yaml/facts/#{certname}.yaml" - upload_facts(certname, req) - end - - result = enc(certname) - cache(certname, result) - end - rescue TimeoutError, SocketError, Errno::EHOSTUNREACH, Errno::ECONNREFUSED, FactUploadError => e - $stderr.puts "Serving cached ENC: #{e}" - # Read from cache, we got some sort of an error. - result = read_cache(certname) - end - - if no_env - require 'yaml' - yaml = YAML.load(result) - yaml.delete('environment') - # Always reset the result to back to clean yaml on our end - puts yaml.to_yaml - else - puts result - end - end - rescue => e - warn e - exit 1 - end - if watch - watch_and_send_facts(push_facts_parallel) - end -end diff --git a/files/foreman-report_v2.rb b/files/foreman-report_v2.rb deleted file mode 100644 index 960a6a44a..000000000 --- a/files/foreman-report_v2.rb +++ /dev/null @@ -1,199 +0,0 @@ -# copy this file to your report dir - e.g. /usr/lib/ruby/1.8/puppet/reports/ -# add this report in your puppetmaster reports - e.g, in your puppet.conf add: -# reports=log, foreman # (or any other reports you want) -# configuration is in /etc/puppet/foreman.yaml - -require 'puppet' -require 'net/http' -require 'net/https' -require 'rbconfig' -require 'uri' -require 'yaml' -begin - require 'json' -rescue LoadError - # Debian packaging guidelines state to avoid needing rubygems, so - # we only try to load it if the first require fails (for RPMs) - begin - require 'rubygems' rescue nil - require 'json' - rescue LoadError => e - puts "You need the `json` gem to use the Foreman ENC script" - # code 1 is already used below - exit 2 - end -end - -if RbConfig::CONFIG['host_os'] =~ /freebsd|dragonfly/i - $settings_file ||= '/usr/local/etc/puppet/foreman.yaml' -else - $settings_file ||= File.exist?('/etc/puppetlabs/puppet/foreman.yaml') ? '/etc/puppetlabs/puppet/foreman.yaml' : '/etc/puppet/foreman.yaml' -end - -SETTINGS = YAML.load_file($settings_file) - -Puppet::Reports.register_report(:foreman) do - desc "Sends reports directly to Foreman" - - def process - # Default retry limit is 1. - retry_limit = SETTINGS[:report_retry_limit] ? SETTINGS[:report_retry_limit] : 1 - tries = 0 - begin - # check for report metrics - raise(Puppet::ParseError, "Invalid report: can't find metrics information for #{self.host}") if self.metrics.nil? - - uri = URI.parse(foreman_url) - http = Net::HTTP.new(uri.host, uri.port) - if SETTINGS[:report_timeout] - http.open_timeout = SETTINGS[:report_timeout] - http.read_timeout = SETTINGS[:report_timeout] - end - http.use_ssl = uri.scheme == 'https' - if http.use_ssl? - if SETTINGS[:ssl_ca] && !SETTINGS[:ssl_ca].empty? - http.ca_file = SETTINGS[:ssl_ca] - http.verify_mode = OpenSSL::SSL::VERIFY_PEER - else - http.verify_mode = OpenSSL::SSL::VERIFY_NONE - end - if SETTINGS[:ssl_cert] && !SETTINGS[:ssl_cert].empty? && SETTINGS[:ssl_key] && !SETTINGS[:ssl_key].empty? - http.cert = OpenSSL::X509::Certificate.new(File.read(SETTINGS[:ssl_cert])) - http.key = OpenSSL::PKey::RSA.new(File.read(SETTINGS[:ssl_key]), nil) - end - end - req = Net::HTTP::Post.new("#{uri.path}/api/config_reports") - req.add_field('Accept', 'application/json,version=2' ) - req.content_type = 'application/json' - req.body = {'config_report' => generate_report}.to_json - response = http.request(req) - rescue Exception => e - if (tries += 1) < retry_limit - Puppet.err "Could not send report to Foreman at #{foreman_url}/api/config_reports (attempt #{tries}/#{retry_limit}). Retrying... Stacktrace: #{e}\n#{e.backtrace}" - retry - else - raise Puppet::Error, "Could not send report to Foreman at #{foreman_url}/api/config_reports: #{e}\n#{e.backtrace}" - end - end - end - - def generate_report - report = {} - set_report_format - report['host'] = self.host - # Time.to_s behaves differently in 1.8 / 1.9 so we explicity set the 1.9 format - report['reported_at'] = self.time.utc.strftime("%Y-%m-%d %H:%M:%S UTC") - report['status'] = metrics_to_hash(self) - report['metrics'] = m2h(self.metrics) - report['logs'] = logs_to_array(self.logs) - - report - end - - private - - METRIC = %w[applied restarted failed failed_restarts skipped pending] - - def metrics_to_hash(report) - report_status = {} - metrics = self.metrics - - # find our metric values - METRIC.each do |m| - if @format == 0 - report_status[m] = metrics["resources"][m.to_sym] unless metrics["resources"].nil? - else - h=translate_metrics_to26(m) - mv = metrics[h[:type]] - report_status[m] = mv[h[:name].to_sym] + mv[h[:name].to_s] rescue nil - end - report_status[m] ||= 0 - end - - # special fix for false warning about skips - # sometimes there are skip values, but there are no error messages, we ignore them. - if report_status["skipped"] > 0 and ((report_status.values.inject(:+)) - report_status["skipped"] == report.logs.size) - report_status["skipped"] = 0 - end - # fix for reports that contain no metrics (i.e. failed catalog) - if @format > 1 and report.respond_to?(:status) and report.status == "failed" - report_status["failed"] += 1 - end - # fix for Puppet non-resource errors (i.e. failed catalog fetches before falling back to cache) - report_status["failed"] += report.logs.find_all {|l| l.source =~ /Puppet$/ && l.level.to_s == 'err' }.count - - return report_status - end - - def m2h metrics - h = {} - metrics.each do |title, mtype| - h[mtype.name] ||= {} - mtype.values.each{|m| h[mtype.name].merge!({m[0].to_s => m[2]})} - end - return h - end - - def logs_to_array logs - h = [] - logs.each do |log| - # skipping debug messages, we dont want them in Foreman's db - next if log.level == :debug - - # skipping catalog summary run messages, we dont want them in Foreman's db - next if log.message =~ /^Finished catalog run in \d+.\d+ seconds$/ - - # Match Foreman's slightly odd API format... - l = { 'log' => { 'sources' => {}, 'messages' => {} } } - l['log']['level'] = log.level.to_s - l['log']['messages']['message'] = log.message - l['log']['sources']['source'] = log.source - h << l - end - return h - end - - # The metrics layout has changed in Puppet 2.6.x release, - # this method attempts to align the bit value metrics and the new name scheme in 2.6.x - # returns a hash of { :type => "metric type", :name => "metric_name"} - def translate_metrics_to26 metric - case metric - when "applied" - case @format - when 0..1 - { :type => "total", :name => :changes} - else - { :type => "changes", :name => "total"} - end - when "failed_restarts" - case @format - when 0..1 - { :type => "resources", :name => metric} - else - { :type => "resources", :name => "failed_to_restart"} - end - when "pending" - { :type => "events", :name => "noop" } - else - { :type => "resources", :name => metric} - end - end - - def set_report_format - @format ||= case - when self.instance_variables.detect {|v| v.to_s == "@environment"} - @format = 3 - when self.instance_variables.detect {|v| v.to_s == "@report_format"} - @format = 2 - when self.instance_variables.detect {|v| v.to_s == "@resource_statuses"} - @format = 1 - else - @format = 0 - end - end - - def foreman_url - SETTINGS[:url] || raise(Puppet::Error, "Must provide URL in #{$settings_file}") - end - -end diff --git a/manifests/puppetmaster.pp b/manifests/puppetmaster.pp deleted file mode 100644 index 7cefc1c55..000000000 --- a/manifests/puppetmaster.pp +++ /dev/null @@ -1,117 +0,0 @@ -# @summary Set up Foreman integration for a Puppetserver -# -# This class includes the necessary scripts for Foreman on the puppetmaster and -# is intented to be added to your puppetmaster -# -# @param foreman_url -# The Foreman URL -# @param enc -# Whether to install the ENC script -# @param receive_facts -# Whether to configure the ENC to send facts to Foreman -# @param puppet_home -# The Puppet home where the YAML files with facts live. Used for the ENC script -# @param reports -# Whether to enable the report processor -# @param puppet_user -# The user used to run the Puppetserver -# @param puppet_group -# The group used to run the Puppetserver -# @param puppet_basedir -# The directory used to install the report processor to -# @param puppet_etcdir -# The directory used to put the configuration in. -# @param timeout -# The timeout to use on HTTP calls in the ENC script -# @param report_timeout -# The timeout to use on HTTP calls in the report processor -# @param ssl_ca -# The SSL CA file path to use -# @param ssl_cert -# The SSL certificate file path to use -# @param ssl_key -# The SSL key file path to use -class foreman::puppetmaster ( - Stdlib::HTTPUrl $foreman_url = $foreman::puppetmaster::params::foreman_url, - Boolean $reports = $foreman::puppetmaster::params::reports, - Boolean $enc = $foreman::puppetmaster::params::enc, - Boolean $receive_facts = $foreman::puppetmaster::params::receive_facts, - Stdlib::Absolutepath $puppet_home = $foreman::puppetmaster::params::puppet_home, - String $puppet_user = $foreman::puppetmaster::params::puppet_user, - String $puppet_group = $foreman::puppetmaster::params::puppet_group, - Stdlib::Absolutepath $puppet_basedir = $foreman::puppetmaster::params::puppet_basedir, - Stdlib::Absolutepath $puppet_etcdir = $foreman::puppetmaster::params::puppet_etcdir, - Integer $timeout = $foreman::puppetmaster::params::puppetmaster_timeout, - Integer $report_timeout = $foreman::puppetmaster::params::puppetmaster_report_timeout, - Variant[Enum[''], Stdlib::Absolutepath] $ssl_ca = $foreman::puppetmaster::params::client_ssl_ca, - Variant[Enum[''], Stdlib::Absolutepath] $ssl_cert = $foreman::puppetmaster::params::client_ssl_cert, - Variant[Enum[''], Stdlib::Absolutepath] $ssl_key = $foreman::puppetmaster::params::client_ssl_key, -) inherits foreman::puppetmaster::params { - - case $facts['os']['family'] { - 'Debian': { $json_package = 'ruby-json' } - default: { $json_package = 'rubygem-json' } - } - - ensure_packages([$json_package]) - - file {"${puppet_etcdir}/foreman.yaml": - content => template("${module_name}/puppet.yaml.erb"), - mode => '0640', - owner => 'root', - group => $puppet_group, - } - - if $reports { # foreman reporter - - exec { 'Create Puppet Reports dir': - command => "/bin/mkdir -p ${puppet_basedir}/reports", - creates => "${puppet_basedir}/reports", - } - file {"${puppet_basedir}/reports/foreman.rb": - mode => '0644', - owner => 'root', - group => '0', - source => "puppet:///modules/${module_name}/foreman-report_v2.rb", - require => Exec['Create Puppet Reports dir'], - } - } - - if $enc { - file { "${puppet_etcdir}/node.rb": - source => "puppet:///modules/${module_name}/external_node_v2.rb", - mode => '0550', - owner => $puppet_user, - group => $puppet_group, - } - - file { "${puppet_home}/yaml": - ensure => directory, - owner => $puppet_user, - group => $puppet_group, - mode => '0750', - selinux_ignore_defaults => true, - } - - file { "${puppet_home}/yaml/foreman": - ensure => directory, - owner => $puppet_user, - group => $puppet_group, - mode => '0750', - } - - file { "${puppet_home}/yaml/node": - ensure => directory, - owner => $puppet_user, - group => $puppet_group, - mode => '0750', - } - - file { "${puppet_home}/yaml/facts": - ensure => directory, - owner => $puppet_user, - group => $puppet_group, - mode => '0750', - } - } -} diff --git a/manifests/puppetmaster/params.pp b/manifests/puppetmaster/params.pp deleted file mode 100644 index bc28815a3..000000000 --- a/manifests/puppetmaster/params.pp +++ /dev/null @@ -1,79 +0,0 @@ -# Defaults for the puppetmaster -class foreman::puppetmaster::params { - $lower_fqdn = downcase($facts['networking']['fqdn']) - - # Basic configurations - $foreman_url = "https://${lower_fqdn}" - # Should foreman act as an external node classifier (manage puppet class - # assignments) - $enc = true - # Should foreman receive reports from puppet - $reports = true - # Should foreman receive facts from puppet - $receive_facts = true - - $puppet_user = 'puppet' - $puppet_group = 'puppet' - - $puppetmaster_timeout = 60 - $puppetmaster_report_timeout = 60 - - if fact('aio_agent_version') =~ String[1] { - $puppet_basedir = '/opt/puppetlabs/puppet/lib/ruby/vendor_ruby/puppet' - $puppet_etcdir = '/etc/puppetlabs/puppet' - $puppet_home = '/opt/puppetlabs/server/data/puppetserver' - $puppet_ssldir = '/etc/puppetlabs/puppet/ssl' - } else { - case $facts['os']['family'] { - 'RedHat': { - $puppet_basedir = '/usr/share/ruby/vendor_ruby/puppet' - $puppet_etcdir = '/etc/puppet' - $puppet_home = '/var/lib/puppet' - } - 'Debian': { - $puppet_basedir = '/usr/lib/ruby/vendor_ruby/puppet' - $puppet_etcdir = '/etc/puppet' - $puppet_home = '/var/lib/puppet' - } - 'Linux': { - case $facts['os']['name'] { - 'Amazon': { - $puppet_basedir = regsubst($facts['ruby']['version'], '^(\d+\.\d+).*$', '/usr/lib/ruby/site_ruby/\1/puppet') - $puppet_etcdir = '/etc/puppet' - $puppet_home = '/var/lib/puppet' - } - default: { - fail("${facts['networking']['hostname']}: This module does not support operatingsystem ${facts['os']['name']}") - } - } - } - 'Archlinux': { - # lint:ignore:legacy_facts - $puppet_basedir = regsubst($facts['rubyversion'], '^(\d+\.\d+).*$', '/usr/lib/ruby/vendor_ruby/\1/puppet') - # lint:endignore - $puppet_etcdir = '/etc/puppetlabs/puppet' - $puppet_home = '/var/lib/puppet' - } - /^(FreeBSD|DragonFly)$/: { - # lint:ignore:legacy_facts - $puppet_basedir = regsubst($facts['rubyversion'], '^(\d+\.\d+).*$', '/usr/local/lib/ruby/site_ruby/\1/puppet') - # lint:endignore - $puppet_etcdir = '/usr/local/etc/puppet' - $puppet_home = '/var/puppet' - } - default: { - $puppet_basedir = undef - $puppet_etcdir = undef - $puppet_home = undef - } - } - - $puppet_ssldir = "${puppet_home}/ssl" - } - - # If CA is specified, remote Foreman host will be verified in reports/ENC scripts - $client_ssl_ca = "${puppet_ssldir}/certs/ca.pem" - # Used to authenticate to Foreman, required if require_ssl_puppetmasters is enabled - $client_ssl_cert = "${puppet_ssldir}/certs/${lower_fqdn}.pem" - $client_ssl_key = "${puppet_ssldir}/private_keys/${lower_fqdn}.pem" -} diff --git a/spec/classes/foreman_puppetmaster_spec.rb b/spec/classes/foreman_puppetmaster_spec.rb deleted file mode 100644 index 67470785f..000000000 --- a/spec/classes/foreman_puppetmaster_spec.rb +++ /dev/null @@ -1,108 +0,0 @@ -require 'spec_helper' - -describe 'foreman::puppetmaster' do - on_supported_os.each do |os, facts| - context "on #{os}" do - let(:facts) { facts } - let(:site_ruby) { '/opt/puppetlabs/puppet/lib/ruby/vendor_ruby' } - let(:etc_dir) { '/etc/puppetlabs/puppet' } - let(:ssl_dir) { '/etc/puppetlabs/puppet/ssl' } - let(:var_dir) { '/opt/puppetlabs/server/data/puppetserver' } - let(:json_package) { facts[:os]['family'] == 'Debian' ? 'ruby-json' : 'rubygem-json' } - - describe 'without custom parameters' do - it { should contain_class('foreman::puppetmaster::params') } - - it 'should set up reports' do - should contain_exec('Create Puppet Reports dir') - .with_command("/bin/mkdir -p #{site_ruby}/puppet/reports") - .with_creates("#{site_ruby}/puppet/reports") - - should contain_file("#{site_ruby}/puppet/reports/foreman.rb") - .with_mode('0644') - .with_owner('root') - .with_group('0') - .with_source('puppet:///modules/foreman/foreman-report_v2.rb') - .with_require('Exec[Create Puppet Reports dir]') - end - - it 'should set up enc' do - should contain_file("#{etc_dir}/node.rb") - .with_mode('0550') - .with_owner('puppet') - .with_group('puppet') - .with_source('puppet:///modules/foreman/external_node_v2.rb') - end - - it 'should set up directories for the ENC' do - should contain_file("#{var_dir}/yaml") - .with_ensure('directory') - .with_owner('puppet') - .with_group('puppet') - .with_mode('0750') - should contain_file("#{var_dir}/yaml/facts") - .with_ensure('directory') - .with_owner('puppet') - .with_group('puppet') - .with_mode('0750') - should contain_file("#{var_dir}/yaml/foreman") - .with_ensure('directory') - .with_owner('puppet') - .with_group('puppet') - .with_mode('0750') - should contain_file("#{var_dir}/yaml/node") - .with_ensure('directory') - .with_owner('puppet') - .with_group('puppet') - .with_mode('0750') - end - - it 'should install json package' do - should contain_package(json_package).with_ensure('present') - end - - it 'should create puppet.yaml' do - should contain_file("#{etc_dir}/foreman.yaml") - .with_mode('0640') - .with_owner('root') - .with_group('puppet') - - verify_exact_contents(catalogue, "#{etc_dir}/foreman.yaml", [ - "---", - ":url: \"https://#{facts[:fqdn]}\"", - ":ssl_ca: \"#{ssl_dir}/certs/ca.pem\"", - ":ssl_cert: \"#{ssl_dir}/certs/#{facts[:fqdn]}.pem\"", - ":ssl_key: \"#{ssl_dir}/private_keys/#{facts[:fqdn]}.pem\"", - ":puppetdir: \"#{var_dir}\"", - ':puppetuser: "puppet"', - ':facts: true', - ':timeout: 60', - ':report_timeout: 60', - ':threads: null', - ]) - end - end - - describe 'without reports' do - let :params do - { reports: false } - end - - it 'should not include reports' do - should_not contain_exec('Create Puppet Reports dir') - should_not contain_file("#{site_ruby}/puppet/reports/foreman.rb") - end - end - - describe 'without enc' do - let :params do - { enc: false } - end - - it 'should not include enc' do - should_not contain_file("#{etc_dir}/node.rb") - end - end - end - end -end diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index a7275128e..807995a3f 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -2,7 +2,6 @@ # https://github.com/theforeman/foreman-installer-modulesync require 'webmock/rspec' -require 'puppet/reports' require 'voxpupuli/test/spec_helper' diff --git a/spec/static_fixtures/fake.host.fqdn.com.yaml b/spec/static_fixtures/fake.host.fqdn.com.yaml deleted file mode 100644 index c4df18674..000000000 --- a/spec/static_fixtures/fake.host.fqdn.com.yaml +++ /dev/null @@ -1,97 +0,0 @@ ---- !ruby/object:Puppet::Node::Facts - name: fake.host.fqdn.com - values: - architecture: x86_64 - kernel: Linux - blockdevice_sda_size: "500107862016" - blockdevice_sda_vendor: ATA - blockdevice_sda_model: "HITACHI HTS72755" - blockdevice_sr0_size: "1073741312" - blockdevice_sr0_vendor: HL-DT-ST - blockdevice_sr0_model: "DVDRAM GT50N" - blockdevices: "sda,sr0" - domain: host.fqdn.com - macaddress: "f0:de:f1:fe:da:50" - osfamily: Archlinux - operatingsystem: Archlinux - lsbdistid: arch - facterversion: "1.7.2" - filesystems: "ext2,ext3,ext4,xfs" - fqdn: fake.host.fqdn.com - hardwareisa: unknown - hardwaremodel: x86_64 - hostname: fake - id: root - interfaces: "enp0s25,lo,tun0,virbr0,virbr0_nic,wlp3s0" - ipaddress_enp0s25: "172.20.10.110" - macaddress_enp0s25: "f0:de:f1:fe:da:50" - netmask_enp0s25: "255.255.255.0" - ipaddress_lo: "127.0.0.1" - netmask_lo: "255.0.0.0" - ipaddress_tun0: "10.10.48.120" - netmask_tun0: "255.255.255.255" - ipaddress_virbr0: "192.168.122.1" - macaddress_virbr0: "52:54:00:ca:f7:61" - netmask_virbr0: "255.255.255.0" - macaddress_virbr0_nic: "52:54:00:ca:f7:61" - macaddress_wlp3s0: "24:77:03:7d:06:e4" - ipaddress: "172.20.10.110" - kernelmajversion: "3.10" - kernelrelease: "3.10.3-1-ARCH" - kernelversion: "3.10.3" - lsbdistcodename: n/a - lsbdistdescription: "Arch Linux" - lsbdistrelease: rolling - lsbmajdistrelease: rolling - lsbrelease: "1.4" - memorysize: "3.75 GB" - memoryfree: "1.01 GB" - swapsize: "5.75 GB" - swapfree: "5.68 GB" - swapsize_mb: "5888.00" - swapfree_mb: "5817.52" - memorysize_mb: "3840.48" - memoryfree_mb: "1035.23" - memorytotal: "3.75 GB" - netmask: "255.255.255.0" - network_enp0s25: "172.20.10.0" - network_lo: "127.0.0.0" - network_tun0: "10.10.48.120" - network_virbr0: "192.168.122.0" - operatingsystemrelease: "3.10.3-1-ARCH" - path: "/sbin:/bin:/usr/sbin:/usr/bin" - physicalprocessorcount: "1" - processor0: "Intel(R) Core(TM) i7-2640M CPU @ 2.80GHz" - processor1: "Intel(R) Core(TM) i7-2640M CPU @ 2.80GHz" - processor2: "Intel(R) Core(TM) i7-2640M CPU @ 2.80GHz" - processor3: "Intel(R) Core(TM) i7-2640M CPU @ 2.80GHz" - processorcount: "4" - ps: "ps -ef" - puppetversion: "3.2.3" - rubysitedir: /usr/lib/ruby/site_ruby/2.0.0 - rubyversion: "2.0.0" - selinux: "false" - sshdsakey: "AAAAB3NzaC1kc3MAAACBAOZzy+pbobN0/e/x3Q0oDrAXlu52w2X3HX0SnWzVIq8zCDvBvfAKvCAJWkHiz6YKmWYA749SdUPK92dxER/phhENOIDavK4MZyAIUMIZ0umFIcwM7NtWi8Ax+VpQDmCADc7f1qfvPEyzARKnrTQxeF+lwthqZoGxpTV8QNNvwSaBAAAAFQCIQLOjRL78jGkAN5lXDRa4cUxAQQAAAIAqEVlMwajYe5nRBdgKvryFWRhxXrFgH/QyL37IcK6aBfOkkh0mVm8yIh9BPc3ECPkdvk+bR0+0jollwc4JUy0gSpjfJ9uB66t53gIxiLYcxQwKcoQvRmzRGNZOY7UdgDMLekXMH3sq1ZfyG87hsgnB1w011NtxeP5PZZJzj+tpawAAAIA/llOjYYVPVtzpySp6sxebO95klJcc4tWD1cPizi/wXNqUr93n++bGQ0ovoQX3WOydmR2MBEXMpHWIFwwSc2tuGYWH9wCwu+eL/RhLLHU46QD/VQshbTI1feF+NP/H6FaBIoI/rezbxbqOAQK9biAoipdw3qY371W/Jt74zi/HyQ==" - sshfp_dsa: |- - SSHFP 2 1 9af03876637811b106681dc007ada0cbf9163c68 - SSHFP 2 2 ddcd32dabd6ca7c7a3537075e6c3ebcc9571644e597f3c18ad17fe475bf1a623 - sshrsakey: "AAAAB3NzaC1yc2EAAAADAQABAAABAQCeVibRHEhWRAZC5WhXLiA/LK8SkEwMPV4uTbfp6W6r4Mko7qC9+gFReiDuYfcG3Hln53Gm8n5IbM2smOd7SfFCGNj/xrCKiOTuNPuwORx83pB4simy6JTD7cNn1ZNbbJxWAPVV2g6X4ZplJccFl5CYZOC+fuiUYWfsnTy3zlHfS2YIIK04SfZljhC/697mWxPtripp38p+3A6Cd8BefkoksBZODDw0wgjPe/TcbEv39WgLvmP2nwC90fZDhq8iS0oNmWE/k/6RIFuqxfMnB/9cPZpFyvEmL8D2hsyetXRXVRtG6Jje4yiqRZXFSlETVTrxvKjL0DG86LoyS2LBvkQH" - sshfp_rsa: |- - SSHFP 1 1 bdfeac8fea83ab252edb2d49d3f03299fa3dd90e - SSHFP 1 2 f0feff807ce12d8bfe422b9c56fbaa463f03321eef85b011c1961669be87399c - sshecdsakey: "AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFIeiSzWBGMdc6qqcYpLmeOmDcDfxERBBUXE6EdJVebAlaC6dumdmAHbLMFeB1mheGIZbjRxPNtyXPFrnDqH1Bw=" - sshfp_ecdsa: |- - SSHFP 3 1 dc65b98bd80588bbdd3ee83e7294a749a5eafbb5 - SSHFP 3 2 697c2f6dc84f1a146e178e2c3eb596bc552421def57b2fa2ca0a574f2ca6c1d0 - timezone: BST - uniqueid: "007f0100" - uptime: "1 day" - uptime_days: "1" - uptime_hours: "32" - uptime_seconds: "115413" - virtual: physical - is_virtual: "false" - clientcert: fake.host.fqdn.com - clientversion: "3.2.3" - !ruby/sym "_timestamp": 2013-08-02 18:40:14.147766 +01:00 - expiration: 2013-08-02 19:10:14.074993 +01:00 diff --git a/spec/static_fixtures/report-2.6.12-noops.yaml b/spec/static_fixtures/report-2.6.12-noops.yaml deleted file mode 100644 index 2166d7c34..000000000 --- a/spec/static_fixtures/report-2.6.12-noops.yaml +++ /dev/null @@ -1,627 +0,0 @@ ---- !ruby/object:Puppet::Transaction::Report - configuration_version: 1321590922 - host: puppetmaster1.vm - kind: apply - logs: - - !ruby/object:Puppet::Util::Log - level: !ruby/sym info - message: Caching catalog for puppetmaster1.vm - source: Puppet - tags: - - info - time: 2011-11-18 04:35:22.791391 +00:00 - - !ruby/object:Puppet::Util::Log - level: !ruby/sym info - message: Applying configuration version '1321590922' - source: Puppet - tags: - - info - time: 2011-11-18 04:35:22.879717 +00:00 - - !ruby/object:Puppet::Util::Log - file: /etc/puppet/manifests/site.pp - level: !ruby/sym notice - line: 14 - message: "current_value absent, should be file (noop)" - source: "/Stage[main]//File[/tmp/file8]/ensure" - tags: - - notice - - file - - class - time: 2011-11-18 04:35:22.889956 +00:00 - - !ruby/object:Puppet::Util::Log - file: /etc/puppet/manifests/site.pp - level: !ruby/sym notice - line: 8 - message: "current_value {md5}980fe9e4399ee8b8f553c2d3dceb0cda, should be {md5}383de0ff6f5a31731dbd27a7278bbccf (noop)" - source: "/Stage[main]//File[/tmp/file2]/content" - tags: - - notice - - file - - class - time: 2011-11-18 04:35:22.923368 +00:00 - - !ruby/object:Puppet::Util::Log - file: /etc/puppet/manifests/site.pp - level: !ruby/sym notice - line: 11 - message: "current_value absent, should be file (noop)" - source: "/Stage[main]//File[/tmp/file5]/ensure" - tags: - - notice - - file - - class - time: 2011-11-18 04:35:22.924941 +00:00 - - !ruby/object:Puppet::Util::Log - file: /etc/puppet/manifests/site.pp - level: !ruby/sym notice - line: 13 - message: "current_value absent, should be file (noop)" - source: "/Stage[main]//File[/tmp/file7]/ensure" - tags: - - notice - - file - - class - time: 2011-11-18 04:35:22.926587 +00:00 - - !ruby/object:Puppet::Util::Log - file: /etc/puppet/manifests/site.pp - level: !ruby/sym notice - line: 12 - message: "current_value absent, should be file (noop)" - source: "/Stage[main]//File[/tmp/file6]/ensure" - tags: - - notice - - file - - class - time: 2011-11-18 04:35:22.927997 +00:00 - - !ruby/object:Puppet::Util::Log - file: /etc/puppet/manifests/site.pp - level: !ruby/sym notice - line: 16 - message: "current_value absent, should be file (noop)" - source: "/Stage[main]//File[/tmp/file10]/ensure" - tags: - - notice - - file - - class - time: 2011-11-18 04:35:22.929859 +00:00 - - !ruby/object:Puppet::Util::Log - file: /etc/puppet/manifests/site.pp - level: !ruby/sym notice - line: 9 - message: "current_value absent, should be file (noop)" - source: "/Stage[main]//File[/tmp/file3]/ensure" - tags: - - notice - - file - - class - time: 2011-11-18 04:35:22.933014 +00:00 - - !ruby/object:Puppet::Util::Log - file: /etc/puppet/manifests/site.pp - level: !ruby/sym notice - line: 10 - message: "current_value absent, should be file (noop)" - source: "/Stage[main]//File[/tmp/file4]/ensure" - tags: - - notice - - file - - class - time: 2011-11-18 04:35:22.935271 +00:00 - - !ruby/object:Puppet::Util::Log - file: /etc/puppet/manifests/site.pp - level: !ruby/sym notice - line: 15 - message: "current_value absent, should be file (noop)" - source: "/Stage[main]//File[/tmp/file9]/ensure" - tags: - - notice - - file - - class - time: 2011-11-18 04:35:22.936869 +00:00 - - !ruby/object:Puppet::Util::Log - file: /etc/puppet/manifests/site.pp - level: !ruby/sym notice - line: 7 - message: "current_value absent, should be file (noop)" - source: "/Stage[main]//File[/tmp/file1]/ensure" - tags: - - notice - - file - - class - time: 2011-11-18 04:35:22.939037 +00:00 - - !ruby/object:Puppet::Util::Log - level: !ruby/sym notice - message: Finished catalog run in 0.07 seconds - source: Puppet - tags: - - notice - time: 2011-11-18 04:35:22.943074 +00:00 - metrics: - time: !ruby/object:Puppet::Util::Metric - label: Time - name: time - values: - - - - config_retrieval - - Config retrieval - - 0.845368146896362 - - - - service - - Service - - 0.007622 - - - - schedule - - Schedule - - 0.001103 - - - - total - - Total - - 0.897144146896362 - - - - file - - File - - 0.042869 - - - - filebucket - - Filebucket - - 0.000182 - resources: !ruby/object:Puppet::Util::Metric - label: Resources - name: resources - values: - - - - total - - Total - - 18 - - - - out_of_sync - - Out of sync - - 10 - events: !ruby/object:Puppet::Util::Metric - label: Events - name: events - values: - - - - noop - - Noop - - 10 - - - - total - - Total - - 10 - changes: !ruby/object:Puppet::Util::Metric - label: Changes - name: changes - values: - - - - total - - Total - - 0 - puppet_version: 2.6.12 - report_format: 2 - resource_statuses: - "Schedule[monthly]": !ruby/object:Puppet::Resource::Status - change_count: 0 - changed: false - evaluation_time: 0.000211 - events: [] - failed: false - file: - line: - out_of_sync: false - out_of_sync_count: 0 - resource: "Schedule[monthly]" - resource_type: Schedule - skipped: false - tags: - - schedule - - monthly - time: 2011-11-18 04:35:22.931521 +00:00 - title: monthly - "Filebucket[puppet]": !ruby/object:Puppet::Resource::Status - change_count: 0 - changed: false - evaluation_time: 0.000182 - events: [] - failed: false - file: - line: - out_of_sync: false - out_of_sync_count: 0 - resource: "Filebucket[puppet]" - resource_type: Filebucket - skipped: false - tags: - - filebucket - - puppet - time: 2011-11-18 04:35:22.937584 +00:00 - title: puppet - "Schedule[never]": !ruby/object:Puppet::Resource::Status - change_count: 0 - changed: false - evaluation_time: 0.000173 - events: [] - failed: false - file: - line: - out_of_sync: false - out_of_sync_count: 0 - resource: "Schedule[never]" - resource_type: Schedule - skipped: false - tags: - - schedule - - never - time: 2011-11-18 04:35:22.930444 +00:00 - title: never - "File[/tmp/file9]": !ruby/object:Puppet::Resource::Status - change_count: 0 - changed: false - evaluation_time: 0.001004 - events: - - !ruby/object:Puppet::Transaction::Event - audited: false - desired_value: !ruby/sym file - historical_value: - message: "current_value absent, should be file (noop)" - name: !ruby/sym file_created - previous_value: !ruby/sym absent - property: ensure - status: noop - time: 2011-11-18 04:35:22.936798 +00:00 - failed: false - file: /etc/puppet/manifests/site.pp - line: 15 - out_of_sync: true - out_of_sync_count: 1 - resource: "File[/tmp/file9]" - resource_type: File - skipped: false - tags: - - file - - class - time: 2011-11-18 04:35:22.936280 +00:00 - title: /tmp/file9 - "Schedule[weekly]": !ruby/object:Puppet::Resource::Status - change_count: 0 - changed: false - evaluation_time: 0.000236 - events: [] - failed: false - file: - line: - out_of_sync: false - out_of_sync_count: 0 - resource: "Schedule[weekly]" - resource_type: Schedule - skipped: false - tags: - - schedule - - weekly - time: 2011-11-18 04:35:22.880603 +00:00 - title: weekly - "File[/tmp/file8]": !ruby/object:Puppet::Resource::Status - change_count: 0 - changed: false - evaluation_time: 0.001106 - events: - - !ruby/object:Puppet::Transaction::Event - audited: false - desired_value: !ruby/sym file - historical_value: - message: "current_value absent, should be file (noop)" - name: !ruby/sym file_created - previous_value: !ruby/sym absent - property: ensure - status: noop - time: 2011-11-18 04:35:22.889839 +00:00 - failed: false - file: /etc/puppet/manifests/site.pp - line: 14 - out_of_sync: true - out_of_sync_count: 1 - resource: "File[/tmp/file8]" - resource_type: File - skipped: false - tags: - - file - - class - time: 2011-11-18 04:35:22.889206 +00:00 - title: /tmp/file8 - "File[/tmp/file7]": !ruby/object:Puppet::Resource::Status - change_count: 0 - changed: false - evaluation_time: 0.001081 - events: - - !ruby/object:Puppet::Transaction::Event - audited: false - desired_value: !ruby/sym file - historical_value: - message: "current_value absent, should be file (noop)" - name: !ruby/sym file_created - previous_value: !ruby/sym absent - property: ensure - status: noop - time: 2011-11-18 04:35:22.926516 +00:00 - failed: false - file: /etc/puppet/manifests/site.pp - line: 13 - out_of_sync: true - out_of_sync_count: 1 - resource: "File[/tmp/file7]" - resource_type: File - skipped: false - tags: - - file - - class - time: 2011-11-18 04:35:22.926023 +00:00 - title: /tmp/file7 - "File[/tmp/file6]": !ruby/object:Puppet::Resource::Status - change_count: 0 - changed: false - evaluation_time: 0.000811 - events: - - !ruby/object:Puppet::Transaction::Event - audited: false - desired_value: !ruby/sym file - historical_value: - message: "current_value absent, should be file (noop)" - name: !ruby/sym file_created - previous_value: !ruby/sym absent - property: ensure - status: noop - time: 2011-11-18 04:35:22.927928 +00:00 - failed: false - file: /etc/puppet/manifests/site.pp - line: 12 - out_of_sync: true - out_of_sync_count: 1 - resource: "File[/tmp/file6]" - resource_type: File - skipped: false - tags: - - file - - class - time: 2011-11-18 04:35:22.927444 +00:00 - title: /tmp/file6 - "File[/tmp/file5]": !ruby/object:Puppet::Resource::Status - change_count: 0 - changed: false - evaluation_time: 0.001284 - events: - - !ruby/object:Puppet::Transaction::Event - audited: false - desired_value: !ruby/sym file - historical_value: - message: "current_value absent, should be file (noop)" - name: !ruby/sym file_created - previous_value: !ruby/sym absent - property: ensure - status: noop - time: 2011-11-18 04:35:22.924873 +00:00 - failed: false - file: /etc/puppet/manifests/site.pp - line: 11 - out_of_sync: true - out_of_sync_count: 1 - resource: "File[/tmp/file5]" - resource_type: File - skipped: false - tags: - - file - - class - time: 2011-11-18 04:35:22.924291 +00:00 - title: /tmp/file5 - "Service[crond]": !ruby/object:Puppet::Resource::Status - change_count: 0 - changed: false - evaluation_time: 0.007622 - events: [] - failed: false - file: /etc/puppet/manifests/site.pp - line: 18 - out_of_sync: false - out_of_sync_count: 0 - resource: "Service[crond]" - resource_type: Service - skipped: false - tags: - - service - - crond - - class - time: 2011-11-18 04:35:22.881104 +00:00 - title: crond - "File[/tmp/file4]": !ruby/object:Puppet::Resource::Status - change_count: 0 - changed: false - evaluation_time: 0.00112 - events: - - !ruby/object:Puppet::Transaction::Event - audited: false - desired_value: !ruby/sym file - historical_value: - message: "current_value absent, should be file (noop)" - name: !ruby/sym file_created - previous_value: !ruby/sym absent - property: ensure - status: noop - time: 2011-11-18 04:35:22.935187 +00:00 - failed: false - file: /etc/puppet/manifests/site.pp - line: 10 - out_of_sync: true - out_of_sync_count: 1 - resource: "File[/tmp/file4]" - resource_type: File - skipped: false - tags: - - file - - class - time: 2011-11-18 04:35:22.934516 +00:00 - title: /tmp/file4 - "File[/tmp/file3]": !ruby/object:Puppet::Resource::Status - change_count: 0 - changed: false - evaluation_time: 0.001422 - events: - - !ruby/object:Puppet::Transaction::Event - audited: false - desired_value: !ruby/sym file - historical_value: - message: "current_value absent, should be file (noop)" - name: !ruby/sym file_created - previous_value: !ruby/sym absent - property: ensure - status: noop - time: 2011-11-18 04:35:22.932902 +00:00 - failed: false - file: /etc/puppet/manifests/site.pp - line: 9 - out_of_sync: true - out_of_sync_count: 1 - resource: "File[/tmp/file3]" - resource_type: File - skipped: false - tags: - - file - - class - time: 2011-11-18 04:35:22.932045 +00:00 - title: /tmp/file3 - "Schedule[puppet]": !ruby/object:Puppet::Resource::Status - change_count: 0 - changed: false - evaluation_time: 0.000151 - events: [] - failed: false - file: - line: - out_of_sync: false - out_of_sync_count: 0 - resource: "Schedule[puppet]" - resource_type: Schedule - skipped: false - tags: - - schedule - - puppet - time: 2011-11-18 04:35:22.938011 +00:00 - title: puppet - "File[/tmp/file2]": !ruby/object:Puppet::Resource::Status - change_count: 0 - changed: false - evaluation_time: 0.033203 - events: - - !ruby/object:Puppet::Transaction::Event - audited: false - desired_value: "{md5}383de0ff6f5a31731dbd27a7278bbccf" - historical_value: - message: "current_value {md5}980fe9e4399ee8b8f553c2d3dceb0cda, should be {md5}383de0ff6f5a31731dbd27a7278bbccf (noop)" - name: !ruby/sym content_changed - previous_value: "{md5}980fe9e4399ee8b8f553c2d3dceb0cda" - property: content - status: noop - time: 2011-11-18 04:35:22.923221 +00:00 - failed: false - file: /etc/puppet/manifests/site.pp - line: 8 - out_of_sync: true - out_of_sync_count: 1 - resource: "File[/tmp/file2]" - resource_type: File - skipped: false - tags: - - file - - class - time: 2011-11-18 04:35:22.890638 +00:00 - title: /tmp/file2 - "Schedule[hourly]": !ruby/object:Puppet::Resource::Status - change_count: 0 - changed: false - evaluation_time: 0.000176 - events: [] - failed: false - file: - line: - out_of_sync: false - out_of_sync_count: 0 - resource: "Schedule[hourly]" - resource_type: Schedule - skipped: false - tags: - - schedule - - hourly - time: 2011-11-18 04:35:22.928808 +00:00 - title: hourly - "File[/tmp/file10]": !ruby/object:Puppet::Resource::Status - change_count: 0 - changed: false - evaluation_time: 0.000869 - events: - - !ruby/object:Puppet::Transaction::Event - audited: false - desired_value: !ruby/sym file - historical_value: - message: "current_value absent, should be file (noop)" - name: !ruby/sym file_created - previous_value: !ruby/sym absent - property: ensure - status: noop - time: 2011-11-18 04:35:22.929791 +00:00 - failed: false - file: /etc/puppet/manifests/site.pp - line: 16 - out_of_sync: true - out_of_sync_count: 1 - resource: "File[/tmp/file10]" - resource_type: File - skipped: false - tags: - - file - - class - time: 2011-11-18 04:35:22.929280 +00:00 - title: /tmp/file10 - "Schedule[daily]": !ruby/object:Puppet::Resource::Status - change_count: 0 - changed: false - evaluation_time: 0.000156 - events: [] - failed: false - file: - line: - out_of_sync: false - out_of_sync_count: 0 - resource: "Schedule[daily]" - resource_type: Schedule - skipped: false - tags: - - schedule - - daily - time: 2011-11-18 04:35:22.930849 +00:00 - title: daily - "File[/tmp/file1]": !ruby/object:Puppet::Resource::Status - change_count: 0 - changed: false - evaluation_time: 0.000969 - events: - - !ruby/object:Puppet::Transaction::Event - audited: false - desired_value: !ruby/sym file - historical_value: - message: "current_value absent, should be file (noop)" - name: !ruby/sym file_created - previous_value: !ruby/sym absent - property: ensure - status: noop - time: 2011-11-18 04:35:22.938972 +00:00 - failed: false - file: /etc/puppet/manifests/site.pp - line: 7 - out_of_sync: true - out_of_sync_count: 1 - resource: "File[/tmp/file1]" - resource_type: File - skipped: false - tags: - - file - - class - time: 2011-11-18 04:35:22.938529 +00:00 - title: /tmp/file1 - status: unchanged - time: 2011-11-18 04:35:21.413028 +00:00 \ No newline at end of file diff --git a/spec/static_fixtures/report-2.6.2-debug.yaml b/spec/static_fixtures/report-2.6.2-debug.yaml deleted file mode 100644 index c30ee36fe..000000000 --- a/spec/static_fixtures/report-2.6.2-debug.yaml +++ /dev/null @@ -1,706 +0,0 @@ ---- !ruby/object:Puppet::Transaction::Report - external_times: - !ruby/sym config_retrieval: 0.141527891159058 - host: p26.elysium.emeraldreverie.org - logs: - - !ruby/object:Puppet::Util::Log - level: !ruby/sym debug - message: Using cached certificate for ca - source: Puppet - tags: - - debug - time: 2013-08-29 12:11:45.406015 +01:00 - version: &id001 2.6.2 - - !ruby/object:Puppet::Util::Log - level: !ruby/sym debug - message: Using cached certificate for p26.elysium.emeraldreverie.org - source: Puppet - tags: - - debug - time: 2013-08-29 12:11:45.406396 +01:00 - version: *id001 - - !ruby/object:Puppet::Util::Log - level: !ruby/sym debug - message: Using cached certificate_revocation_list for ca - source: Puppet - tags: - - debug - time: 2013-08-29 12:11:45.406884 +01:00 - version: *id001 - - !ruby/object:Puppet::Util::Log - level: !ruby/sym debug - message: "catalog supports formats: b64_zlib_yaml dot pson raw yaml; using pson" - source: Puppet - tags: - - debug - time: 2013-08-29 12:11:45.408062 +01:00 - version: *id001 - - !ruby/object:Puppet::Util::Log - level: !ruby/sym info - message: Caching catalog for p26.elysium.emeraldreverie.org - source: Puppet - tags: - - info - time: 2013-08-29 12:11:45.541248 +01:00 - version: *id001 - - !ruby/object:Puppet::Util::Log - level: !ruby/sym debug - message: "Puppet::Type::Service::ProviderRedhat: file /sbin/service does not exist" - source: Puppet - tags: - - debug - time: 2013-08-29 12:11:45.547033 +01:00 - version: *id001 - - !ruby/object:Puppet::Util::Log - level: !ruby/sym debug - message: "Puppet::Type::Service::ProviderRunit: file /usr/bin/sv does not exist" - source: Puppet - tags: - - debug - time: 2013-08-29 12:11:45.547232 +01:00 - version: *id001 - - !ruby/object:Puppet::Util::Log - level: !ruby/sym debug - message: "Puppet::Type::Service::ProviderGentoo: file /sbin/rc-update does not exist" - source: Puppet - tags: - - debug - time: 2013-08-29 12:11:45.547547 +01:00 - version: *id001 - - !ruby/object:Puppet::Util::Log - level: !ruby/sym debug - message: "Puppet::Type::Service::ProviderLaunchd: file /bin/launchctl does not exist" - source: Puppet - tags: - - debug - time: 2013-08-29 12:11:45.547694 +01:00 - version: *id001 - - !ruby/object:Puppet::Util::Log - level: !ruby/sym debug - message: "Puppet::Type::Service::ProviderDaemontools: file /usr/bin/svc does not exist" - source: Puppet - tags: - - debug - time: 2013-08-29 12:11:45.547880 +01:00 - version: *id001 - - !ruby/object:Puppet::Util::Log - level: !ruby/sym debug - message: "Puppet::Type::Package::ProviderAix: file /usr/bin/lslpp does not exist" - source: Puppet - tags: - - debug - time: 2013-08-29 12:11:45.550203 +01:00 - version: *id001 - - !ruby/object:Puppet::Util::Log - level: !ruby/sym debug - message: "Puppet::Type::Package::ProviderSunfreeware: file pkg-get does not exist" - source: Puppet - tags: - - debug - time: 2013-08-29 12:11:45.550427 +01:00 - version: *id001 - - !ruby/object:Puppet::Util::Log - level: !ruby/sym debug - message: "Puppet::Type::Package::ProviderRug: file /usr/bin/rug does not exist" - source: Puppet - tags: - - debug - time: 2013-08-29 12:11:45.550645 +01:00 - version: *id001 - - !ruby/object:Puppet::Util::Log - level: !ruby/sym debug - message: "Puppet::Type::Package::ProviderFreebsd: file /usr/sbin/pkg_delete does not exist" - source: Puppet - tags: - - debug - time: 2013-08-29 12:11:45.550832 +01:00 - version: *id001 - - !ruby/object:Puppet::Util::Log - level: !ruby/sym debug - message: "Puppet::Type::Package::ProviderOpenbsd: file pkg_delete does not exist" - source: Puppet - tags: - - debug - time: 2013-08-29 12:11:45.551009 +01:00 - version: *id001 - - !ruby/object:Puppet::Util::Log - level: !ruby/sym debug - message: "Puppet::Type::Package::ProviderPkg: file /usr/bin/pkg does not exist" - source: Puppet - tags: - - debug - time: 2013-08-29 12:11:45.551168 +01:00 - version: *id001 - - !ruby/object:Puppet::Util::Log - level: !ruby/sym debug - message: "Puppet::Type::Package::ProviderUp2date: file /usr/sbin/up2date-nox does not exist" - source: Puppet - tags: - - debug - time: 2013-08-29 12:11:45.551339 +01:00 - version: *id001 - - !ruby/object:Puppet::Util::Log - level: !ruby/sym debug - message: "Puppet::Type::Package::ProviderSun: file /usr/sbin/pkgrm does not exist" - source: Puppet - tags: - - debug - time: 2013-08-29 12:11:45.551486 +01:00 - version: *id001 - - !ruby/object:Puppet::Util::Log - level: !ruby/sym debug - message: "Puppet::Type::Package::ProviderPorts: file /usr/sbin/pkg_info does not exist" - source: Puppet - tags: - - debug - time: 2013-08-29 12:11:45.551635 +01:00 - version: *id001 - - !ruby/object:Puppet::Util::Log - level: !ruby/sym debug - message: "Puppet::Type::Package::ProviderZypper: file /usr/bin/zypper does not exist" - source: Puppet - tags: - - debug - time: 2013-08-29 12:11:45.551782 +01:00 - version: *id001 - - !ruby/object:Puppet::Util::Log - level: !ruby/sym debug - message: "Puppet::Type::Package::ProviderYum: file yum does not exist" - source: Puppet - tags: - - debug - time: 2013-08-29 12:11:45.551966 +01:00 - version: *id001 - - !ruby/object:Puppet::Util::Log - level: !ruby/sym debug - message: "Puppet::Type::Package::ProviderPortage: file /usr/bin/eix-update does not exist" - source: Puppet - tags: - - debug - time: 2013-08-29 12:11:45.552124 +01:00 - version: *id001 - - !ruby/object:Puppet::Util::Log - level: !ruby/sym debug - message: "Puppet::Type::Package::ProviderPortupgrade: file /usr/sbin/pkg_info does not exist" - source: Puppet - tags: - - debug - time: 2013-08-29 12:11:45.552266 +01:00 - version: *id001 - - !ruby/object:Puppet::Util::Log - level: !ruby/sym debug - message: "Puppet::Type::Package::ProviderNim: file /usr/sbin/nimclient does not exist" - source: Puppet - tags: - - debug - time: 2013-08-29 12:11:45.552411 +01:00 - version: *id001 - - !ruby/object:Puppet::Util::Log - level: !ruby/sym debug - message: "Puppet::Type::Package::ProviderRpm: file rpm does not exist" - source: Puppet - tags: - - debug - time: 2013-08-29 12:11:45.552582 +01:00 - version: *id001 - - !ruby/object:Puppet::Util::Log - level: !ruby/sym debug - message: "Puppet::Type::Package::ProviderFink: file /sw/bin/fink does not exist" - source: Puppet - tags: - - debug - time: 2013-08-29 12:11:45.552751 +01:00 - version: *id001 - - !ruby/object:Puppet::Util::Log - level: !ruby/sym debug - message: "Puppet::Type::Package::ProviderUrpmi: file rpm does not exist" - source: Puppet - tags: - - debug - time: 2013-08-29 12:11:45.552932 +01:00 - version: *id001 - - !ruby/object:Puppet::Util::Log - level: !ruby/sym debug - message: "Puppet::Type::Package::ProviderAptrpm: file rpm does not exist" - source: Puppet - tags: - - debug - time: 2013-08-29 12:11:45.553190 +01:00 - version: *id001 - - !ruby/object:Puppet::Util::Log - level: !ruby/sym debug - message: "Puppet::Type::Package::ProviderHpux: file /usr/sbin/swinstall does not exist" - source: Puppet - tags: - - debug - time: 2013-08-29 12:11:45.553413 +01:00 - version: *id001 - - !ruby/object:Puppet::Util::Log - level: !ruby/sym debug - message: "Puppet::Type::Package::ProviderGem: file gem does not exist" - source: Puppet - tags: - - debug - time: 2013-08-29 12:11:45.553595 +01:00 - version: *id001 - - !ruby/object:Puppet::Util::Log - level: !ruby/sym debug - message: Creating default schedules - source: Puppet - tags: - - debug - time: 2013-08-29 12:11:45.556682 +01:00 - version: *id001 - - !ruby/object:Puppet::Util::Log - level: !ruby/sym debug - message: Loaded state in 0.00 seconds - source: Puppet - tags: - - debug - time: 2013-08-29 12:11:45.561722 +01:00 - version: *id001 - - !ruby/object:Puppet::Util::Log - level: !ruby/sym debug - message: Prefetching apt resources for package - source: Puppet - tags: - - debug - time: 2013-08-29 12:11:45.561988 +01:00 - version: *id001 - - !ruby/object:Puppet::Util::Log - level: !ruby/sym debug - message: "Executing '/usr/bin/dpkg-query -W --showformat '${Status} ${Package} ${Version}\\n''" - source: Puppet - tags: - - debug - time: 2013-08-29 12:11:45.562165 +01:00 - version: *id001 - - !ruby/object:Puppet::Util::Log - level: !ruby/sym debug - message: "Executing '/usr/bin/dpkg-query -W --showformat '${Status} ${Package} ${Version}\\n''" - source: Puppet::Type::Package::ProviderApt - tags: - - debug - time: 2013-08-29 12:11:45.562302 +01:00 - - !ruby/object:Puppet::Util::Log - file: &id002 /etc/puppet/manifests/site.pp - level: !ruby/sym debug - line: 9 - message: "subscribes to File[/tmp/test]" - source: "/Stage[main]//Node[default]/Service[ssh]/subscribe" - tags: - - debug - - service - - ssh - - node - - default - - class - - subscribe - time: 2013-08-29 12:11:45.578198 +01:00 - version: 1377774705 - - !ruby/object:Puppet::Util::Log - level: !ruby/sym info - message: Applying configuration version '1377774705' - source: Puppet - tags: - - info - time: 2013-08-29 12:11:45.579428 +01:00 - version: *id001 - - !ruby/object:Puppet::Util::Log - level: !ruby/sym debug - message: "Executing '/usr/bin/dpkg-query -W --showformat ${Status} ${Package} ${Version}\\n failblog'" - source: Puppet::Type::Package::ProviderApt - tags: - - debug - time: 2013-08-29 12:11:45.580035 +01:00 - - !ruby/object:Puppet::Util::Log - level: !ruby/sym debug - message: Executing '/usr/bin/apt-get -q -y -o DPkg::Options::=--force-confold install failblog' - source: Puppet::Type::Package::ProviderApt - tags: - - debug - time: 2013-08-29 12:11:45.640837 +01:00 - - !ruby/object:Puppet::Util::Log - file: *id002 - level: !ruby/sym err - line: 12 - message: &id005 "change from purged to present failed: Execution of '/usr/bin/apt-get -q -y -o DPkg::Options::=--force-confold install failblog' returned 100: Reading package lists...\nBuilding dependency tree...\nReading state information...\nE: Unable to locate package failblog\n" - source: &id006 "/Stage[main]//Node[default]/Package[failblog]/ensure" - tags: - - err - - package - - failblog - - node - - default - - class - time: 2013-08-29 12:11:45.769459 +01:00 - version: 1377774705 - - !ruby/object:Puppet::Util::Log - file: *id002 - level: !ruby/sym debug - line: 5 - message: Executing 'diff -u /tmp/test /tmp/puppet-file20130829-5078-g93qwu-0' - source: "/Stage[main]//Node[default]/File[/tmp/test]/content" - tags: - - debug - - file - - node - - default - - class - - content - time: 2013-08-29 12:11:45.772637 +01:00 - version: 1377774705 - - !ruby/object:Puppet::Util::Log - level: !ruby/sym debug - message: Finishing transaction 69924282124080 - source: Puppet - tags: - - debug - time: 2013-08-29 12:11:45.859739 +01:00 - version: *id001 - - !ruby/object:Puppet::Util::Log - level: !ruby/sym info - message: "FileBucket adding /tmp/test as {md5}a196f9208c4cb04242aa4e3287ff5755" - source: Puppet - tags: - - info - time: 2013-08-29 12:11:45.860611 +01:00 - version: *id001 - - !ruby/object:Puppet::Util::Log - file: *id002 - level: !ruby/sym info - line: 5 - message: Filebucketed /tmp/test to puppet with sum a196f9208c4cb04242aa4e3287ff5755 - source: "/Stage[main]//Node[default]/File[/tmp/test]" - tags: - - info - - file - - node - - default - - class - time: 2013-08-29 12:11:45.860927 +01:00 - version: 1377774705 - - !ruby/object:Puppet::Util::Log - file: *id002 - level: !ruby/sym notice - line: 5 - message: &id003 "content changed '{md5}a196f9208c4cb04242aa4e3287ff5755' to '{md5}d6d0c756fb8abfb33e652a20e85b70bc'" - source: &id004 "/Stage[main]//Node[default]/File[/tmp/test]/content" - tags: - - notice - - file - - node - - default - - class - time: 2013-08-29 12:11:45.861618 +01:00 - version: 1377774705 - - !ruby/object:Puppet::Util::Log - file: *id002 - level: !ruby/sym info - line: 5 - message: "Scheduling refresh of Service[ssh]" - source: "/Stage[main]//Node[default]/File[/tmp/test]" - tags: - - info - - file - - node - - default - - class - time: 2013-08-29 12:11:45.861910 +01:00 - version: 1377774705 - - !ruby/object:Puppet::Util::Log - level: !ruby/sym debug - message: Executing 'ps -ef' - source: "Service[ssh](provider=debian)" - tags: - - debug - time: 2013-08-29 12:11:45.862513 +01:00 - - !ruby/object:Puppet::Util::Log - level: !ruby/sym debug - message: PID is 1342 - source: "Service[ssh](provider=debian)" - tags: - - debug - time: 2013-08-29 12:11:45.866674 +01:00 - - !ruby/object:Puppet::Util::Log - level: !ruby/sym debug - message: Executing 'ps -ef' - source: "Service[ssh](provider=debian)" - tags: - - debug - time: 2013-08-29 12:11:45.867073 +01:00 - - !ruby/object:Puppet::Util::Log - level: !ruby/sym debug - message: PID is 1342 - source: "Service[ssh](provider=debian)" - tags: - - debug - time: 2013-08-29 12:11:45.870662 +01:00 - - !ruby/object:Puppet::Util::Log - level: !ruby/sym debug - message: Executing '/etc/init.d/ssh stop' - source: "Service[ssh](provider=debian)" - tags: - - debug - time: 2013-08-29 12:11:45.870988 +01:00 - - !ruby/object:Puppet::Util::Log - level: !ruby/sym debug - message: Executing '/etc/init.d/ssh start' - source: "Service[ssh](provider=debian)" - tags: - - debug - time: 2013-08-29 12:11:45.887665 +01:00 - - !ruby/object:Puppet::Util::Log - file: *id002 - level: !ruby/sym notice - line: 9 - message: Triggered 'refresh' from 1 events - source: "/Stage[main]//Node[default]/Service[ssh]" - tags: - - notice - - service - - ssh - - node - - default - - class - time: 2013-08-29 12:11:45.906566 +01:00 - version: 1377774705 - metrics: - time: !ruby/object:Puppet::Util::Metric - label: Time - name: time - values: - - - config_retrieval - - Config retrieval - - 0.141527891159058 - - - service - - Service - - 0.00463 - - - schedule - - Schedule - - 0.000678 - - - package - - Package - - 0.189955 - - - file - - File - - 0.090157 - - - filebucket - - Filebucket - - 7.9e-05 - resources: !ruby/object:Puppet::Util::Metric - label: Resources - name: resources - values: - - - !ruby/sym failed - - Failed - - 1 - - - !ruby/sym out_of_sync - - Out of sync - - 2 - - - !ruby/sym total - - Total - - 10 - - - !ruby/sym restarted - - Restarted - - 1 - - - !ruby/sym changed - - Changed - - 2 - events: !ruby/object:Puppet::Util::Metric - label: Events - name: events - values: - - - failure - - Failure - - 1 - - - !ruby/sym total - - Total - - 2 - - - success - - Success - - 1 - changes: !ruby/object:Puppet::Util::Metric - label: Changes - name: changes - values: - - - !ruby/sym total - - Total - - 2 - resource_statuses: - "Filebucket[puppet]": !ruby/object:Puppet::Resource::Status - evaluation_time: 7.9e-05 - events: [] - file: - line: - resource: "Filebucket[puppet]" - source_description: "/Filebucket[puppet]" - tags: - - filebucket - - puppet - time: 2013-08-29 12:11:45.770925 +01:00 - version: 1377774705 - "Schedule[monthly]": !ruby/object:Puppet::Resource::Status - evaluation_time: 0.000221 - events: [] - file: - line: - resource: "Schedule[monthly]" - source_description: "/Schedule[monthly]" - tags: - - schedule - - monthly - time: 2013-08-29 12:11:45.907575 +01:00 - version: 1377774705 - "Schedule[never]": !ruby/object:Puppet::Resource::Status - evaluation_time: 8.9e-05 - events: [] - file: - line: - resource: "Schedule[never]" - source_description: "/Schedule[never]" - tags: - - schedule - - never - time: 2013-08-29 12:11:45.770659 +01:00 - version: 1377774705 - "Schedule[weekly]": !ruby/object:Puppet::Resource::Status - evaluation_time: 0.000114 - events: [] - file: - line: - resource: "Schedule[weekly]" - source_description: "/Schedule[weekly]" - tags: - - schedule - - weekly - time: 2013-08-29 12:11:45.770089 +01:00 - version: 1377774705 - "File[/tmp/test]": !ruby/object:Puppet::Resource::Status - change_count: 1 - changed: true - evaluation_time: 0.090157 - events: - - !ruby/object:Puppet::Transaction::Event - default_log_level: !ruby/sym notice - desired_value: "{md5}d6d0c756fb8abfb33e652a20e85b70bc" - file: *id002 - line: 5 - message: *id003 - name: !ruby/sym content_changed - previous_value: "{md5}a196f9208c4cb04242aa4e3287ff5755" - property: content - resource: "File[/tmp/test]" - source_description: *id004 - status: success - tags: - - file - - node - - default - - class - time: 2013-08-29 12:11:45.861581 +01:00 - version: 1377774705 - file: *id002 - line: 5 - out_of_sync: true - resource: "File[/tmp/test]" - source_description: "/Stage[main]//Node[default]/File[/tmp/test]" - tags: - - file - - node - - default - - class - time: 2013-08-29 12:11:45.771700 +01:00 - version: 1377774705 - "Schedule[puppet]": !ruby/object:Puppet::Resource::Status - evaluation_time: 0.000106 - events: [] - file: - line: - resource: "Schedule[puppet]" - source_description: "/Schedule[puppet]" - tags: - - schedule - - puppet - time: 2013-08-29 12:11:45.770403 +01:00 - version: 1377774705 - "Service[ssh]": !ruby/object:Puppet::Resource::Status - evaluation_time: 0.00463 - events: [] - file: *id002 - line: 9 - resource: "Service[ssh]" - restarted: true - source_description: "/Stage[main]//Node[default]/Service[ssh]" - tags: - - service - - ssh - - node - - default - - class - time: 2013-08-29 12:11:45.862351 +01:00 - version: 1377774705 - "Schedule[daily]": !ruby/object:Puppet::Resource::Status - evaluation_time: 7.5e-05 - events: [] - file: - line: - resource: "Schedule[daily]" - source_description: "/Schedule[daily]" - tags: - - schedule - - daily - time: 2013-08-29 12:11:45.771172 +01:00 - version: 1377774705 - "Schedule[hourly]": !ruby/object:Puppet::Resource::Status - evaluation_time: 7.3e-05 - events: [] - file: - line: - resource: "Schedule[hourly]" - source_description: "/Schedule[hourly]" - tags: - - schedule - - hourly - time: 2013-08-29 12:11:45.771409 +01:00 - version: 1377774705 - "Package[failblog]": !ruby/object:Puppet::Resource::Status - change_count: 1 - changed: true - evaluation_time: 0.189955 - events: - - !ruby/object:Puppet::Transaction::Event - default_log_level: !ruby/sym notice - desired_value: !ruby/sym present - file: *id002 - line: 12 - message: *id005 - name: !ruby/sym package_installed - previous_value: !ruby/sym purged - property: ensure - resource: "Package[failblog]" - source_description: *id006 - status: failure - tags: - - package - - failblog - - node - - default - - class - time: 2013-08-29 12:11:45.769394 +01:00 - version: 1377774705 - failed: true - file: *id002 - line: 12 - out_of_sync: true - resource: "Package[failblog]" - source_description: "/Stage[main]//Node[default]/Package[failblog]" - tags: - - package - - failblog - - node - - default - - class - time: 2013-08-29 12:11:45.579853 +01:00 - version: 1377774705 - time: 2013-08-29 12:11:44.681312 +01:00 \ No newline at end of file diff --git a/spec/static_fixtures/report-2.6.5-errors.yaml b/spec/static_fixtures/report-2.6.5-errors.yaml deleted file mode 100644 index 5b441f360..000000000 --- a/spec/static_fixtures/report-2.6.5-errors.yaml +++ /dev/null @@ -1,60 +0,0 @@ ---- !ruby/object:Puppet::Transaction::Report - configuration_version: - host: myserver01.test.mydomain.local - kind: apply - logs: - - !ruby/object:Puppet::Util::Log - level: !ruby/sym info - message: Loading facts in lwsite - source: //myserver01.test.mydomain.local/Puppet - tags: - - info - time: 2011-03-22 10:35:53.697815 +01:00 - - !ruby/object:Puppet::Util::Log - level: !ruby/sym info - message: Loading facts in lwopenversion - source: //myserver01.test.mydomain.local/Puppet - tags: - - info - time: 2011-03-22 10:35:53.699174 +01:00 - - !ruby/object:Puppet::Util::Log - level: !ruby/sym info - message: Loading facts in lwsite - source: //myserver01.test.mydomain.local/Puppet - tags: - - info - time: 2011-03-22 10:35:53.701088 +01:00 - - !ruby/object:Puppet::Util::Log - level: !ruby/sym info - message: Loading facts in lwopenversion - source: //myserver01.test.mydomain.local/Puppet - tags: - - info - time: 2011-03-22 10:35:53.702136 +01:00 - - !ruby/object:Puppet::Util::Log - level: !ruby/sym err - message: "Could not retrieve catalog from remote server: Error 400 on SERVER: No match found for 'ntprestricts2' in any data file during extlookup() at /etc/puppet/environments/master/modules/ntp/manifests/init.pp:5 on node myserver01.test.mydomain.local" - source: //myserver01.test.mydomain.local/Puppet - tags: - - err - time: 2011-03-22 10:35:53.951191 +01:00 - - !ruby/object:Puppet::Util::Log - level: !ruby/sym warning - message: Not using cache on failed catalog - source: //myserver01.test.mydomain.local/Puppet - tags: - - warning - time: 2011-03-22 10:35:53.952462 +01:00 - - !ruby/object:Puppet::Util::Log - level: !ruby/sym err - message: Could not retrieve catalog; skipping run - source: //myserver01.test.mydomain.local/Puppet - tags: - - err - time: 2011-03-22 10:35:53.953133 +01:00 - metrics: {} - puppet_version: 2.6.6 - report_format: 2 - resource_statuses: {} - status: failed - time: 2011-03-22 10:35:53.639181 +01:00 \ No newline at end of file diff --git a/spec/static_fixtures/report-3.5.1-catalog-errors.yaml b/spec/static_fixtures/report-3.5.1-catalog-errors.yaml deleted file mode 100644 index d9d6ff3a2..000000000 --- a/spec/static_fixtures/report-3.5.1-catalog-errors.yaml +++ /dev/null @@ -1,205 +0,0 @@ ---- !ruby/object:Puppet::Transaction::Report - time: 2014-05-01 07:46:01.647876 +00:00 - transaction_uuid: "63397540-2d54-4fe0-a005-ad121b7c68fd" - logs: - - !ruby/object:Puppet::Util::Log - time: 2014-05-01 08:46:01.753042 +01:00 - level: !ruby/sym warning - tags: - - warning - source: Puppet - message: "Unable to fetch my node definition, but the agent run will continue:" - - !ruby/object:Puppet::Util::Log - time: 2014-05-01 08:46:01.753358 +01:00 - level: !ruby/sym warning - tags: - - warning - source: Puppet - message: "Error 400 on SERVER: Failed to find foreman-el6.example.com via exec: Execution of '/etc/puppet/node.rb foreman-el6.example.com' returned 1: " - - !ruby/object:Puppet::Util::Log - time: 2014-05-01 08:46:01.754805 +01:00 - level: !ruby/sym info - tags: - - info - source: Puppet - message: "Retrieving pluginfacts" - - !ruby/object:Puppet::Util::Log - time: 2014-05-01 08:46:01.805000 +01:00 - level: !ruby/sym info - tags: - - info - source: Puppet - message: "Retrieving plugin" - - !ruby/object:Puppet::Util::Log - time: 2014-05-01 08:46:02.326185 +01:00 - level: !ruby/sym err - tags: - - err - source: Puppet - message: "Could not retrieve catalog from remote server: Error 400 on SERVER: Failed when searching for node foreman-el6.example.com: Failed to find foreman-el6.example.com via exec: Execution of '/etc/puppet/node.rb foreman-el6.example.com' returned 1: " - - !ruby/object:Puppet::Util::Log - time: 2014-05-01 08:46:02.332825 +01:00 - level: !ruby/sym notice - tags: - - notice - source: Puppet - message: "Using cached catalog" - - !ruby/object:Puppet::Util::Log - time: 2014-05-01 08:46:02.357622 +01:00 - level: !ruby/sym info - tags: - - info - source: Puppet - message: "Applying configuration version '1398929771'" - - !ruby/object:Puppet::Util::Log - time: 2014-05-01 08:46:02.369660 +01:00 - level: !ruby/sym notice - tags: - - notice - source: Puppet - message: test - - !ruby/object:Puppet::Util::Log - time: 2014-05-01 08:46:02.370044 +01:00 - file: /etc/puppet/manifests/site.pp - level: !ruby/sym notice - tags: - - notify - - test - - notice - - class - source: /Stage[main]/Main/Notify[test]/message - message: "defined 'message' as 'test'" - line: 2 - - !ruby/object:Puppet::Util::Log - time: 2014-05-01 08:46:02.442178 +01:00 - level: !ruby/sym notice - tags: - - notice - source: Puppet - message: "Finished catalog run in 0.10 seconds" - kind: apply - puppet_version: "3.5.1" - configuration_version: 1398929771 - resource_statuses: - Notify[test]: !ruby/object:Puppet::Resource::Status - resource: Notify[test] - file: /etc/puppet/manifests/site.pp - line: 2 - evaluation_time: 0.000905 - change_count: 1 - out_of_sync_count: 1 - tags: - - notify - - test - - class - time: 2014-05-01 08:46:02.369282 +01:00 - events: - - !ruby/object:Puppet::Transaction::Event - audited: false - property: message - previous_value: absent - desired_value: test - historical_value: - message: "defined 'message' as 'test'" - name: !ruby/sym message_changed - status: success - time: 2014-05-01 08:46:02.369569 +01:00 - out_of_sync: true - changed: true - resource_type: Notify - title: test - skipped: false - failed: false - containment_path: - - Stage[main] - - Main - - Notify[test] - Filebucket[puppet]: !ruby/object:Puppet::Resource::Status - resource: Filebucket[puppet] - file: - line: - evaluation_time: 0.000562 - change_count: 0 - out_of_sync_count: 0 - tags: - - filebucket - - puppet - time: 2014-05-01 08:46:02.370550 +01:00 - events: [] - out_of_sync: false - changed: false - resource_type: Filebucket - title: puppet - skipped: false - failed: false - containment_path: - - Filebucket[puppet] - environment: production - report_format: 4 - host: foreman-el6.example.com - metrics: - time: !ruby/object:Puppet::Util::Metric - name: time - values: - - - filebucket - - Filebucket - - 0.000562 - - - config_retrieval - - "Config retrieval" - - 0.00626802444458008 - - - notify - - Notify - - 0.000905 - - - total - - Total - - 0.00773502444458008 - label: Time - resources: !ruby/object:Puppet::Util::Metric - name: resources - values: - - - failed_to_restart - - "Failed to restart" - - 0 - - - skipped - - Skipped - - 0 - - - failed - - Failed - - 0 - - - restarted - - Restarted - - 0 - - - scheduled - - Scheduled - - 0 - - - changed - - Changed - - 1 - - - out_of_sync - - "Out of sync" - - 1 - - - total - - Total - - 2 - label: Resources - changes: !ruby/object:Puppet::Util::Metric - name: changes - values: - - - total - - Total - - 1 - label: Changes - events: !ruby/object:Puppet::Util::Metric - name: events - values: - - - failure - - Failure - - 0 - - - success - - Success - - 1 - - - total - - Total - - 1 - label: Events - status: changed \ No newline at end of file diff --git a/spec/static_fixtures/report-empty.json b/spec/static_fixtures/report-empty.json deleted file mode 100644 index 3ef8e677b..000000000 --- a/spec/static_fixtures/report-empty.json +++ /dev/null @@ -1,37 +0,0 @@ -// raw data from Foreman's old parsing of reports -{ - "host": "rhel6n01.corp.com", - "reported_at":"2010-11-19 02:39:04 UTC", - "metrics": {}, - "logs": [ - { - "log": { - "sources": {"source":"Puppet"}, - "messages": {"message":"Could not retrieve catalog from remote server: Error 400 on SERVER: Could not find node 'rhel6n01.corp.com'; cannot compile"}, - "level":"err" - } - }, - { - "log": { - "sources": {"source":"Puppet"}, - "messages": {"message":"Using cached catalog"}, - "level":"notice" - } - }, - { - "log": { - "sources": {"source":"Puppet"}, - "messages": {"message":"Could not retrieve catalog; skipping run"}, - "level":"err" - } - } - ], - "status": { - "applied": 0, - "failed": 2, - "failed_restarts": 0, - "pending": 0, - "restarted": 0, - "skipped": 0 - } -} diff --git a/spec/static_fixtures/report-empty.yaml b/spec/static_fixtures/report-empty.yaml deleted file mode 100644 index 8eefb707f..000000000 --- a/spec/static_fixtures/report-empty.yaml +++ /dev/null @@ -1,31 +0,0 @@ ---- !ruby/object:Puppet::Transaction::Report -external_times: {} -host: rhel6n01.corp.com -logs: - - !ruby/object:Puppet::Util::Log - level: !ruby/sym err - message: "Could not retrieve catalog from remote server: Error 400 on SERVER: Could not find node 'rhel6n01.corp.com'; cannot compile" - source: Puppet - tags: - - err - time: 2010-11-18 20:39:11.487700 -06:00 - version: &id001 2.6.3 - - !ruby/object:Puppet::Util::Log - level: !ruby/sym notice - message: Using cached catalog - source: Puppet - tags: - - notice - time: 2010-11-18 20:39:11.488888 -06:00 - version: *id001 - - !ruby/object:Puppet::Util::Log - level: !ruby/sym err - message: Could not retrieve catalog; skipping run - source: Puppet - tags: - - err - time: 2010-11-18 20:39:11.489098 -06:00 - version: *id001 -metrics: {} -resource_statuses: {} -time: 2010-11-18 20:39:04.979613 -06:00 diff --git a/spec/static_fixtures/report-format-2.json b/spec/static_fixtures/report-format-2.json deleted file mode 100644 index 7662ab5af..000000000 --- a/spec/static_fixtures/report-format-2.json +++ /dev/null @@ -1,132 +0,0 @@ -{ - "host": "abel01.test.bluedome.local", - "reported_at": "2011-03-18 12:42:22 UTC", - "status": { - "applied": 1, - "restarted": 1, - "failed": 0, - "failed_restarts": 0, - "skipped": 0, - "pending": 0 - }, - "metrics": { - "time": { - "config_retrieval": 0.485618829727173, - "total": 0.545489829727173 - }, - "resources": { - "changed": 1, - "out_of_sync": 1, - "restarted": 1, - "total": 13 - }, - "changes": { - "total": 1 - }, - "events": { - "success": 1, - "total": 1 - } - }, - "logs": [ - { - "log": { - "sources": { - "source": "//abel01.test.bluedome.local/Puppet" - }, - "messages": { - "message": "Loading facts in lwsite" - }, - "level": "info" - } - }, - { - "log": { - "sources": { - "source": "//abel01.test.bluedome.local/Puppet" - }, - "messages": { - "message": "Loading facts in lwopenversion" - }, - "level": "info" - } - }, - { - "log": { - "sources": { - "source": "//abel01.test.bluedome.local/Puppet" - }, - "messages": { - "message": "Loading facts in lwsite" - }, - "level": "info" - } - }, - { - "log": { - "sources": { - "source": "//abel01.test.bluedome.local/Puppet" - }, - "messages": { - "message": "Loading facts in lwopenversion" - }, - "level": "info" - } - }, - { - "log": { - "sources": { - "source": "//abel01.test.bluedome.local/Puppet" - }, - "messages": { - "message": "Caching catalog for abel01.test.bluedome.local" - }, - "level": "info" - } - }, - { - "log": { - "sources": { - "source": "//abel01.test.bluedome.local/Puppet" - }, - "messages": { - "message": "Applying configuration version '1300444752'" - }, - "level": "info" - } - }, - { - "log": { - "sources": { - "source": "//abel01.test.bluedome.local//Stage[main]/Ntp::Config/File[/etc/ntp.conf]/ensure" - }, - "messages": { - "message": "defined content as '{md5}7983c9a394663b29d51178539dbdf2e5'" - }, - "level": "notice" - } - }, - { - "log": { - "sources": { - "source": "//abel01.test.bluedome.local//Stage[main]/Ntp::Config/File[/etc/ntp.conf]" - }, - "messages": { - "message": "Scheduling refresh of Service[ntpd]" - }, - "level": "info" - } - }, - { - "log": { - "sources": { - "source": "//abel01.test.bluedome.local//Stage[main]/Ntp::Service/Service[ntpd]" - }, - "messages": { - "message": "Triggered 'refresh' from 1 events" - }, - "level": "notice" - } - } - ] -} diff --git a/spec/static_fixtures/report-format-2.yaml b/spec/static_fixtures/report-format-2.yaml deleted file mode 100644 index 3bba64333..000000000 --- a/spec/static_fixtures/report-format-2.yaml +++ /dev/null @@ -1,413 +0,0 @@ ---- !ruby/object:Puppet::Transaction::Report - configuration_version: 1300444752 - host: abel01.test.bluedome.local - kind: apply - logs: - - !ruby/object:Puppet::Util::Log - level: !ruby/sym info - message: Loading facts in lwsite - source: //abel01.test.bluedome.local/Puppet - tags: - - info - time: 2011-03-18 13:42:22.909217 +01:00 - - !ruby/object:Puppet::Util::Log - level: !ruby/sym info - message: Loading facts in lwopenversion - source: //abel01.test.bluedome.local/Puppet - tags: - - info - time: 2011-03-18 13:42:22.911165 +01:00 - - !ruby/object:Puppet::Util::Log - level: !ruby/sym info - message: Loading facts in lwsite - source: //abel01.test.bluedome.local/Puppet - tags: - - info - time: 2011-03-18 13:42:22.912593 +01:00 - - !ruby/object:Puppet::Util::Log - level: !ruby/sym info - message: Loading facts in lwopenversion - source: //abel01.test.bluedome.local/Puppet - tags: - - info - time: 2011-03-18 13:42:22.913700 +01:00 - - !ruby/object:Puppet::Util::Log - level: !ruby/sym info - message: Caching catalog for abel01.test.bluedome.local - source: //abel01.test.bluedome.local/Puppet - tags: - - info - time: 2011-03-18 13:42:23.457309 +01:00 - - !ruby/object:Puppet::Util::Log - level: !ruby/sym info - message: Applying configuration version '1300444752' - source: //abel01.test.bluedome.local/Puppet - tags: - - info - time: 2011-03-18 13:42:23.763961 +01:00 - - !ruby/object:Puppet::Util::Log - file: /etc/puppet/environments/master/modules/ntp/manifests/init.pp - level: !ruby/sym notice - line: 32 - message: "defined content as '{md5}7983c9a394663b29d51178539dbdf2e5'" - source: "//abel01.test.bluedome.local//Stage[main]/Ntp::Config/File[/etc/ntp.conf]/ensure" - tags: - - notice - - file - - class - - ntp::config - - ntp - - config - time: 2011-03-18 13:42:23.794667 +01:00 - - !ruby/object:Puppet::Util::Log - file: /etc/puppet/environments/master/modules/ntp/manifests/init.pp - level: !ruby/sym info - line: 32 - message: "Scheduling refresh of Service[ntpd]" - source: "//abel01.test.bluedome.local//Stage[main]/Ntp::Config/File[/etc/ntp.conf]" - tags: - - info - - file - - class - - ntp::config - - ntp - - config - time: 2011-03-18 13:42:23.803277 +01:00 - - !ruby/object:Puppet::Util::Log - file: /etc/puppet/environments/master/modules/ntp/manifests/init.pp - level: !ruby/sym notice - line: 63 - message: Triggered 'refresh' from 1 events - source: "//abel01.test.bluedome.local//Stage[main]/Ntp::Service/Service[ntpd]" - tags: - - notice - - service - - ntpd - - class - - ntp::service - - ntp - time: 2011-03-18 13:42:24.196587 +01:00 - metrics: - time: !ruby/object:Puppet::Util::Metric - basedir: /var/lib/puppet/rrd/abel01.test.bluedome.local - label: Time - name: time - values: - - - - config_retrieval - - Config retrieval - - 0.485618829727173 - - - - total - - Total - - 0.545489829727173 - resources: !ruby/object:Puppet::Util::Metric - basedir: /var/lib/puppet/rrd/abel01.test.bluedome.local - label: Resources - name: resources - values: - - - - out_of_sync - - Out of sync - - 1 - - - - changed - - Changed - - 1 - - - - restarted - - Restarted - - 1 - - - - total - - Total - - 13 - changes: !ruby/object:Puppet::Util::Metric - basedir: /var/lib/puppet/rrd/abel01.test.bluedome.local - label: Changes - name: changes - values: - - - - total - - Total - - 1 - events: !ruby/object:Puppet::Util::Metric - basedir: /var/lib/puppet/rrd/abel01.test.bluedome.local - label: Events - name: events - values: - - - - total - - Total - - 1 - - - - success - - Success - - 1 - puppet_version: 2.6.6 - report_format: 2 - resource_statuses: - "Package[ntp]": !ruby/object:Puppet::Resource::Status - change_count: 0 - changed: false - evaluation_time: 0.000893 - events: [] - failed: false - file: /etc/puppet/environments/master/modules/ntp/manifests/init.pp - line: 14 - out_of_sync: false - out_of_sync_count: 0 - resource: "Package[ntp]" - resource_type: Package - skipped: false - tags: - - package - - ntp - - class - - ntp::install - - install - time: 2011-03-18 13:42:23.780105 +01:00 - title: ntp - "File[/etc/ntp]": !ruby/object:Puppet::Resource::Status - change_count: 0 - changed: false - evaluation_time: 0.00202 - events: [] - failed: false - file: /etc/puppet/environments/master/modules/ntp/manifests/init.pp - line: 37 - out_of_sync: false - out_of_sync_count: 0 - resource: "File[/etc/ntp]" - resource_type: File - skipped: false - tags: - - file - - class - - ntp::config - - ntp - - config - time: 2011-03-18 13:42:23.781826 +01:00 - title: /etc/ntp - "Filebucket[puppet]": !ruby/object:Puppet::Resource::Status - change_count: 0 - changed: false - evaluation_time: 0.000481 - events: [] - failed: false - file: - line: - out_of_sync: false - out_of_sync_count: 0 - resource: "Filebucket[puppet]" - resource_type: Filebucket - skipped: false - tags: - - filebucket - - puppet - time: 2011-03-18 13:42:24.199206 +01:00 - title: puppet - "Schedule[weekly]": !ruby/object:Puppet::Resource::Status - change_count: 0 - changed: false - evaluation_time: 0.000441 - events: [] - failed: false - file: - line: - out_of_sync: false - out_of_sync_count: 0 - resource: "Schedule[weekly]" - resource_type: Schedule - skipped: false - tags: - - schedule - - weekly - time: 2011-03-18 13:42:24.201575 +01:00 - title: weekly - "File[/etc/ntp/keys]": !ruby/object:Puppet::Resource::Status - change_count: 0 - changed: false - evaluation_time: 0.002297 - events: [] - failed: false - file: /etc/puppet/environments/master/modules/ntp/manifests/init.pp - line: 43 - out_of_sync: false - out_of_sync_count: 0 - resource: "File[/etc/ntp/keys]" - resource_type: File - skipped: false - tags: - - file - - class - - ntp::config - - ntp - - config - time: 2011-03-18 13:42:23.784714 +01:00 - title: /etc/ntp/keys - "File[/etc/ntp.conf]": !ruby/object:Puppet::Resource::Status - change_count: 1 - changed: true - evaluation_time: 0.01212 - events: - - !ruby/object:Puppet::Transaction::Event - audited: false - desired_value: !ruby/sym file - historical_value: - message: "defined content as '{md5}7983c9a394663b29d51178539dbdf2e5'" - name: !ruby/sym file_created - previous_value: !ruby/sym absent - property: ensure - status: success - time: 2011-03-18 13:42:23.792051 +01:00 - failed: false - file: /etc/puppet/environments/master/modules/ntp/manifests/init.pp - line: 32 - out_of_sync: true - out_of_sync_count: 1 - resource: "File[/etc/ntp.conf]" - resource_type: File - skipped: false - tags: - - file - - class - - ntp::config - - ntp - - config - time: 2011-03-18 13:42:23.790949 +01:00 - title: /etc/ntp.conf - "File[/etc/ntp/step-tickers]": !ruby/object:Puppet::Resource::Status - change_count: 0 - changed: false - evaluation_time: 0.002207 - events: [] - failed: false - file: /etc/puppet/environments/master/modules/ntp/manifests/init.pp - line: 49 - out_of_sync: false - out_of_sync_count: 0 - resource: "File[/etc/ntp/step-tickers]" - resource_type: File - skipped: false - tags: - - file - - class - - ntp::config - - ntp - - config - time: 2011-03-18 13:42:23.787865 +01:00 - title: /etc/ntp/step-tickers - "Service[ntpd]": !ruby/object:Puppet::Resource::Status - change_count: 0 - changed: false - evaluation_time: 0.037387 - events: [] - failed: false - file: /etc/puppet/environments/master/modules/ntp/manifests/init.pp - line: 63 - out_of_sync: false - out_of_sync_count: 0 - resource: "Service[ntpd]" - resource_type: Service - skipped: false - tags: - - service - - ntpd - - class - - ntp::service - - ntp - time: 2011-03-18 13:42:23.805729 +01:00 - title: ntpd - "Schedule[daily]": !ruby/object:Puppet::Resource::Status - change_count: 0 - changed: false - evaluation_time: 0.000403 - events: [] - failed: false - file: - line: - out_of_sync: false - out_of_sync_count: 0 - resource: "Schedule[daily]" - resource_type: Schedule - skipped: false - tags: - - schedule - - daily - time: 2011-03-18 13:42:23.778845 +01:00 - title: daily - "Schedule[hourly]": !ruby/object:Puppet::Resource::Status - change_count: 0 - changed: false - evaluation_time: 0.000386 - events: [] - failed: false - file: - line: - out_of_sync: false - out_of_sync_count: 0 - resource: "Schedule[hourly]" - resource_type: Schedule - skipped: false - tags: - - schedule - - hourly - time: 2011-03-18 13:42:24.203822 +01:00 - title: hourly - "Schedule[monthly]": !ruby/object:Puppet::Resource::Status - change_count: 0 - changed: false - evaluation_time: 0.000439 - events: [] - failed: false - file: - line: - out_of_sync: false - out_of_sync_count: 0 - resource: "Schedule[monthly]" - resource_type: Schedule - skipped: false - tags: - - schedule - - monthly - time: 2011-03-18 13:42:24.200424 +01:00 - title: monthly - "Schedule[puppet]": !ruby/object:Puppet::Resource::Status - change_count: 0 - changed: false - evaluation_time: 0.00039 - events: [] - failed: false - file: - line: - out_of_sync: false - out_of_sync_count: 0 - resource: "Schedule[puppet]" - resource_type: Schedule - skipped: false - tags: - - schedule - - puppet - time: 2011-03-18 13:42:24.204922 +01:00 - title: puppet - "Schedule[never]": !ruby/object:Puppet::Resource::Status - change_count: 0 - changed: false - evaluation_time: 0.000407 - events: [] - failed: false - file: - line: - out_of_sync: false - out_of_sync_count: 0 - resource: "Schedule[never]" - resource_type: Schedule - skipped: false - tags: - - schedule - - never - time: 2011-03-18 13:42:24.202707 +01:00 - title: never - status: changed - time: 2011-03-18 13:42:22.876802 +01:00 \ No newline at end of file diff --git a/spec/static_fixtures/report-format-3.json b/spec/static_fixtures/report-format-3.json deleted file mode 100644 index 4b34f9155..000000000 --- a/spec/static_fixtures/report-format-3.json +++ /dev/null @@ -1,106 +0,0 @@ -{ - "host": "puppetmaster.vm1", - "reported_at": "2012-11-09 15:39:28 UTC", - "status": { - "applied": 1, - "restarted": 0, - "failed": 0, - "failed_restarts": 0, - "skipped": 6, - "pending": 0 - }, - "metrics": { - "time": { - "config_retrieval": 0.389333963394165, - "filebucket": 0.000216, - "notify": 0.0019, - "total": 0.391449963394165 - }, - "resources": { - "changed": 1, - "failed": 0, - "failed_to_restart": 0, - "out_of_sync": 1, - "restarted": 0, - "scheduled": 0, - "skipped": 6, - "total": 8 - }, - "events": { - "failure": 0, - "success": 1, - "total": 1 - }, - "changes": { - "total": 1 - } - }, - "logs": [ - { - "log": { - "sources": { - "source": "Puppet" - }, - "messages": { - "message": "Retrieving plugin" - }, - "level": "info" - } - }, - { - "log": { - "sources": { - "source": "Puppet" - }, - "messages": { - "message": "Caching catalog for puppetmaster.vm1" - }, - "level": "info" - } - }, - { - "log": { - "sources": { - "source": "Puppet" - }, - "messages": { - "message": "Applying configuration version '1352475569'" - }, - "level": "info" - } - }, - { - "log": { - "sources": { - "source": "Puppet" - }, - "messages": { - "message": "yay" - }, - "level": "notice" - } - }, - { - "log": { - "sources": { - "source": "/Stage[main]//Node[default]/Notify[yay]/message" - }, - "messages": { - "message": "defined 'message' as 'yay'" - }, - "level": "notice" - } - }, - { - "log": { - "sources": { - "source": "Puppet" - }, - "messages": { - "message": "Creating state file /var/lib/puppet/state/state.yaml" - }, - "level": "info" - } - } - ] -} diff --git a/spec/static_fixtures/report-format-3.yaml b/spec/static_fixtures/report-format-3.yaml deleted file mode 100644 index d1b239bb7..000000000 --- a/spec/static_fixtures/report-format-3.yaml +++ /dev/null @@ -1,283 +0,0 @@ ---- !ruby/object:Puppet::Transaction::Report - kind: apply - time: 2012-11-09 15:39:28.292927 +00:00 - configuration_version: 1352475569 - report_format: 3 - logs: - - !ruby/object:Puppet::Util::Log - time: 2012-11-09 15:39:28.378352 +00:00 - level: !ruby/sym info - message: "Retrieving plugin" - tags: - - info - source: Puppet - - !ruby/object:Puppet::Util::Log - time: 2012-11-09 15:39:29.134836 +00:00 - level: !ruby/sym info - message: "Caching catalog for puppetmaster.vm1" - tags: - - info - source: Puppet - - !ruby/object:Puppet::Util::Log - time: 2012-11-09 15:39:29.251560 +00:00 - level: !ruby/sym info - message: "Applying configuration version '1352475569'" - tags: - - info - source: Puppet - - !ruby/object:Puppet::Util::Log - time: 2012-11-09 15:39:29.262587 +00:00 - level: !ruby/sym notice - message: yay - tags: - - notice - source: Puppet - - !ruby/object:Puppet::Util::Log - time: 2012-11-09 15:39:29.263250 +00:00 - file: /etc/puppet/manifests/site.pp - level: !ruby/sym notice - message: "defined 'message' as 'yay'" - tags: - - notice - - notify - - yay - - node - - default - - class - source: /Stage[main]//Node[default]/Notify[yay]/message - line: 2 - - !ruby/object:Puppet::Util::Log - time: 2012-11-09 15:39:29.270773 +00:00 - level: !ruby/sym info - message: "Creating state file /var/lib/puppet/state/state.yaml" - tags: - - info - source: Puppet - - !ruby/object:Puppet::Util::Log - time: 2012-11-09 15:39:29.448142 +00:00 - level: !ruby/sym notice - message: "Finished catalog run in 0.20 seconds" - tags: - - notice - source: Puppet - resource_statuses: - Schedule[monthly]: !ruby/object:Puppet::Resource::Status - resource: Schedule[monthly] - file: - line: - change_count: 0 - out_of_sync_count: 0 - tags: - - schedule - - monthly - time: 2012-11-09 15:39:29.256862 +00:00 - events: [] - out_of_sync: false - changed: false - resource_type: Schedule - title: monthly - skipped: true - failed: false - Filebucket[puppet]: !ruby/object:Puppet::Resource::Status - resource: Filebucket[puppet] - file: - line: - evaluation_time: 0.000216 - change_count: 0 - out_of_sync_count: 0 - tags: - - filebucket - - puppet - time: 2012-11-09 15:39:29.267517 +00:00 - events: [] - out_of_sync: false - changed: false - resource_type: Filebucket - title: puppet - skipped: false - failed: false - Notify[yay]: !ruby/object:Puppet::Resource::Status - resource: Notify[yay] - file: /etc/puppet/manifests/site.pp - line: 2 - evaluation_time: 0.0019 - change_count: 1 - out_of_sync_count: 1 - tags: - - notify - - yay - - node - - default - - class - time: 2012-11-09 15:39:29.262048 +00:00 - events: - - !ruby/object:Puppet::Transaction::Event - audited: false - property: message - previous_value: !ruby/sym absent - desired_value: yay - historical_value: - message: "defined 'message' as 'yay'" - name: !ruby/sym message_changed - status: success - time: 2012-11-09 15:39:29.262382 +00:00 - out_of_sync: true - changed: true - resource_type: Notify - title: yay - skipped: false - failed: false - Schedule[never]: !ruby/object:Puppet::Resource::Status - resource: Schedule[never] - file: - line: - change_count: 0 - out_of_sync_count: 0 - tags: - - schedule - - never - time: 2012-11-09 15:39:29.266601 +00:00 - events: [] - out_of_sync: false - changed: false - resource_type: Schedule - title: never - skipped: true - failed: false - Schedule[weekly]: !ruby/object:Puppet::Resource::Status - resource: Schedule[weekly] - file: - line: - change_count: 0 - out_of_sync_count: 0 - tags: - - schedule - - weekly - time: 2012-11-09 15:39:29.268075 +00:00 - events: [] - out_of_sync: false - changed: false - resource_type: Schedule - title: weekly - skipped: true - failed: false - Schedule[puppet]: !ruby/object:Puppet::Resource::Status - resource: Schedule[puppet] - file: - line: - change_count: 0 - out_of_sync_count: 0 - tags: - - schedule - - puppet - time: 2012-11-09 15:39:29.268353 +00:00 - events: [] - out_of_sync: false - changed: false - resource_type: Schedule - title: puppet - skipped: true - failed: false - Schedule[daily]: !ruby/object:Puppet::Resource::Status - resource: Schedule[daily] - file: - line: - change_count: 0 - out_of_sync_count: 0 - tags: - - schedule - - daily - time: 2012-11-09 15:39:29.256512 +00:00 - events: [] - out_of_sync: false - changed: false - resource_type: Schedule - title: daily - skipped: true - failed: false - Schedule[hourly]: !ruby/object:Puppet::Resource::Status - resource: Schedule[hourly] - file: - line: - change_count: 0 - out_of_sync_count: 0 - tags: - - schedule - - hourly - time: 2012-11-09 15:39:29.257131 +00:00 - events: [] - out_of_sync: false - changed: false - resource_type: Schedule - title: hourly - skipped: true - failed: false - status: changed - puppet_version: "3.0.1" - metrics: - time: !ruby/object:Puppet::Util::Metric - name: time - label: Time - values: - - - notify - - Notify - - 0.0019 - - - config_retrieval - - "Config retrieval" - - 0.389333963394165 - - - total - - Total - - 0.391449963394165 - - - filebucket - - Filebucket - - 0.000216 - resources: !ruby/object:Puppet::Util::Metric - name: resources - label: Resources - values: - - - failed - - Failed - - 0 - - - changed - - Changed - - 1 - - - scheduled - - Scheduled - - 0 - - - total - - Total - - 8 - - - restarted - - Restarted - - 0 - - - failed_to_restart - - "Failed to restart" - - 0 - - - out_of_sync - - "Out of sync" - - 1 - - - skipped - - Skipped - - 6 - events: !ruby/object:Puppet::Util::Metric - name: events - label: Events - values: - - - failure - - Failure - - 0 - - - total - - Total - - 1 - - - success - - Success - - 1 - changes: !ruby/object:Puppet::Util::Metric - name: changes - label: Changes - values: - - - total - - Total - - 1 - host: puppetmaster.vm1 - environment: production diff --git a/spec/static_fixtures/report-format-6.json b/spec/static_fixtures/report-format-6.json deleted file mode 100644 index b7d398a68..000000000 --- a/spec/static_fixtures/report-format-6.json +++ /dev/null @@ -1,226 +0,0 @@ -{ - "host": "slave01.rackspace.theforeman.org", - "reported_at": "2017-06-28 17:28:03 UTC", - "status": { - "applied": 1, - "restarted": 1, - "failed": 0, - "failed_restarts": 0, - "skipped": 0, - "pending": 0 - }, - "metrics": { - "resources": { - "changed": 1, - "corrective_change": 1, - "failed": 0, - "failed_to_restart": 0, - "out_of_sync": 1, - "restarted": 1, - "scheduled": 0, - "skipped": 0, - "total": 324 - }, - "time": { - "anchor": 0.0016726719999999998, - "concat_file": 0.000712553, - "concat_fragment": 0.004528546999999999, - "config_retrieval": 8.856763861, - "cron": 0.00072971, - "exec": 2.229950824, - "file": 1.549412804, - "filebucket": 0.000201438, - "gnupg_key": 0.011409529, - "group": 0.000637601, - "mailalias": 0.00044571499999999996, - "mounttab": 0.014695739, - "mysql_datadir": 0.000486042, - "mysql_grant": 0.001261819, - "mysql_user": 0.000701149, - "package": 3.712264448, - "postgresql_conf": 0.000556919, - "postgresql_conn_validator": 0.01796124, - "postgresql_psql": 0.18382692, - "service": 0.138903881, - "sshd_config": 0.052789609, - "total": 16.786421149, - "user": 0.005806723, - "yumrepo": 0.000701406 - }, - "changes": { - "total": 1 - }, - "events": { - "failure": 0, - "success": 1, - "total": 1 - } - }, - "logs": [ - { - "log": { - "sources": { - "source": "//slave01.rackspace.theforeman.org/Puppet" - }, - "messages": { - "message": "Using configured environment 'production'" - }, - "level": "info" - } - }, - { - "log": { - "sources": { - "source": "//slave01.rackspace.theforeman.org/Puppet" - }, - "messages": { - "message": "Retrieving pluginfacts" - }, - "level": "info" - } - }, - { - "log": { - "sources": { - "source": "//slave01.rackspace.theforeman.org/Puppet" - }, - "messages": { - "message": "Retrieving plugin" - }, - "level": "info" - } - }, - { - "log": { - "sources": { - "source": "//slave01.rackspace.theforeman.org/Puppet" - }, - "messages": { - "message": "Loading facts" - }, - "level": "info" - } - }, - { - "log": { - "sources": { - "source": "//slave01.rackspace.theforeman.org/Puppet" - }, - "messages": { - "message": "Caching catalog for slave01.rackspace.theforeman.org" - }, - "level": "info" - } - }, - { - "log": { - "sources": { - "source": "//slave01.rackspace.theforeman.org/Puppet" - }, - "messages": { - "message": "Applying configuration version '1498670892'" - }, - "level": "info" - } - }, - { - "log": { - "sources": { - "source": "//slave01.rackspace.theforeman.org//Stage[main]/Ntp::Config/File[/etc/ntp.conf]/content" - }, - "messages": { - "message": "\n--- /etc/ntp.conf\t2017-06-28 17:27:55.527961090 +0000\n+++ /tmp/puppet-file20170628-19190-13ctv7t\t2017-06-28 17:28:27.137069514 +0000\n@@ -1,5 +1,4 @@\n # ntp.conf: Managed by puppet.\n-# yay!\n #\n # Enable next tinker options:\n # panic - keep ntpd from panicking in the event of a large clock skew\n" - }, - "level": "notice" - } - }, - { - "log": { - "sources": { - "source": "//slave01.rackspace.theforeman.org/Puppet" - }, - "messages": { - "message": "Computing checksum on file /etc/ntp.conf" - }, - "level": "info" - } - }, - { - "log": { - "sources": { - "source": "//slave01.rackspace.theforeman.org//Stage[main]/Ntp::Config/File[/etc/ntp.conf]" - }, - "messages": { - "message": "Filebucketed /etc/ntp.conf to puppet with sum d49c304a21940c7d60cf2c8173db6780" - }, - "level": "info" - } - }, - { - "log": { - "sources": { - "source": "//slave01.rackspace.theforeman.org//Stage[main]/Ntp::Config/File[/etc/ntp.conf]/content" - }, - "messages": { - "message": "\n" - }, - "level": "notice" - } - }, - { - "log": { - "sources": { - "source": "//slave01.rackspace.theforeman.org//Stage[main]/Ntp::Config/File[/etc/ntp.conf]/content" - }, - "messages": { - "message": "content changed '{md5}d49c304a21940c7d60cf2c8173db6780' to '{md5}b9a1b7b0853a0de6fc7302577f5b015d'" - }, - "level": "notice" - } - }, - { - "log": { - "sources": { - "source": "//slave01.rackspace.theforeman.org/Class[Ntp::Config]" - }, - "messages": { - "message": "Scheduling refresh of Class[Ntp::Service]" - }, - "level": "info" - } - }, - { - "log": { - "sources": { - "source": "//slave01.rackspace.theforeman.org/Class[Ntp::Service]" - }, - "messages": { - "message": "Scheduling refresh of Service[ntp]" - }, - "level": "info" - } - }, - { - "log": { - "sources": { - "source": "//slave01.rackspace.theforeman.org//Stage[main]/Ntp::Service/Service[ntp]" - }, - "messages": { - "message": "Triggered 'refresh' from 1 events" - }, - "level": "notice" - } - }, - { - "log": { - "sources": { - "source": "//slave01.rackspace.theforeman.org/Puppet" - }, - "messages": { - "message": "Applied catalog in 14.26 seconds" - }, - "level": "notice" - } - } - ] -} diff --git a/spec/static_fixtures/report-format-6.yaml b/spec/static_fixtures/report-format-6.yaml deleted file mode 100644 index d0a9ea20e..000000000 --- a/spec/static_fixtures/report-format-6.yaml +++ /dev/null @@ -1,9760 +0,0 @@ ---- !ruby/object:Puppet::Transaction::Report -metrics: - resources: !ruby/object:Puppet::Util::Metric - label: Resources - name: resources - values: - - - total - - Total - - 324 - - - skipped - - Skipped - - 0 - - - failed - - Failed - - 0 - - - failed_to_restart - - Failed to restart - - 0 - - - restarted - - Restarted - - 1 - - - changed - - Changed - - 1 - - - out_of_sync - - Out of sync - - 1 - - - scheduled - - Scheduled - - 0 - - - corrective_change - - Corrective change - - 1 - time: !ruby/object:Puppet::Util::Metric - label: Time - name: time - values: - - - file - - File - - 1.549412804 - - - package - - Package - - 3.712264448 - - - yumrepo - - Yumrepo - - 0.000701406 - - - anchor - - Anchor - - 0.0016726719999999998 - - - mysql_datadir - - Mysql datadir - - 0.000486042 - - - service - - Service - - 0.138903881 - - - exec - - Exec - - 2.229950824 - - - mysql_user - - Mysql user - - 0.000701149 - - - mysql_grant - - Mysql grant - - 0.001261819 - - - group - - Group - - 0.000637601 - - - gnupg_key - - Gnupg key - - 0.011409529 - - - mounttab - - Mounttab - - 0.014695739 - - - mailalias - - Mailalias - - 0.00044571499999999996 - - - sshd_config - - Sshd config - - 0.052789609 - - - concat_file - - Concat file - - 0.000712553 - - - concat_fragment - - Concat fragment - - 0.004528546999999999 - - - postgresql_conf - - Postgresql conf - - 0.000556919 - - - user - - User - - 0.005806723 - - - postgresql_conn_validator - - Postgresql conn validator - - 0.01796124 - - - postgresql_psql - - Postgresql psql - - 0.18382692 - - - cron - - Cron - - 0.00072971 - - - filebucket - - Filebucket - - 0.000201438 - - - config_retrieval - - Config retrieval - - 8.856763861 - - - total - - Total - - 16.786421149 - changes: !ruby/object:Puppet::Util::Metric - label: Changes - name: changes - values: - - - total - - Total - - 1 - events: !ruby/object:Puppet::Util::Metric - label: Events - name: events - values: - - - total - - Total - - 1 - - - failure - - Failure - - 0 - - - success - - Success - - 1 -puppet_version: 4.10.4 -kind: apply -status: changed -corrective_change: true -time: 2017-06-28 17:28:03.565743001 Z -noop_pending: false -transaction_uuid: 7c0768d0-739f-42d3-b273-e6dc5ee39a5f -logs: -- !ruby/object:Puppet::Util::Log - level: :info - message: Using configured environment 'production' - source: "//slave01.rackspace.theforeman.org/Puppet" - tags: - - info - time: '2017-06-28T17:28:04.593080456+00:00' - file: - line: -- !ruby/object:Puppet::Util::Log - level: :info - message: Retrieving pluginfacts - source: "//slave01.rackspace.theforeman.org/Puppet" - tags: - - info - time: '2017-06-28T17:28:04.593503812+00:00' - file: - line: -- !ruby/object:Puppet::Util::Log - level: :info - message: Retrieving plugin - source: "//slave01.rackspace.theforeman.org/Puppet" - tags: - - info - time: '2017-06-28T17:28:04.737949450+00:00' - file: - line: -- !ruby/object:Puppet::Util::Log - level: :info - message: Loading facts - source: "//slave01.rackspace.theforeman.org/Puppet" - tags: - - info - time: '2017-06-28T17:28:06.114799533+00:00' - file: - line: -- !ruby/object:Puppet::Util::Log - level: :info - message: Caching catalog for slave01.rackspace.theforeman.org - source: "//slave01.rackspace.theforeman.org/Puppet" - tags: - - info - time: '2017-06-28T17:28:16.706304694+00:00' - file: - line: -- !ruby/object:Puppet::Util::Log - level: :info - message: Applying configuration version '1498670892' - source: "//slave01.rackspace.theforeman.org/Puppet" - tags: - - info - time: '2017-06-28T17:28:17.466520645+00:00' - file: - line: -- !ruby/object:Puppet::Util::Log - level: :notice - message: "\n--- /etc/ntp.conf\t2017-06-28 17:27:55.527961090 +0000\n+++ /tmp/puppet-file20170628-19190-13ctv7t\t\ - 2017-06-28 17:28:27.137069514 +0000\n@@ -1,5 +1,4 @@\n # ntp.conf: Managed by\ - \ puppet.\n-# yay!\n #\n # Enable next tinker options:\n # panic - keep ntpd from\ - \ panicking in the event of a large clock skew\n" - source: "//slave01.rackspace.theforeman.org//Stage[main]/Ntp::Config/File[/etc/ntp.conf]/content" - tags: - - notice - - file - - class - - ntp::config - - ntp - - config - - content - time: '2017-06-28T17:28:27.145675905+00:00' - file: "/etc/puppetlabs/code/environments/production/modules/ntp/manifests/config.pp" - line: 47 -- !ruby/object:Puppet::Util::Log - level: :info - message: Computing checksum on file /etc/ntp.conf - source: "//slave01.rackspace.theforeman.org/Puppet" - tags: - - info - time: '2017-06-28T17:28:27.146897348+00:00' - file: - line: -- !ruby/object:Puppet::Util::Log - level: :info - message: Filebucketed /etc/ntp.conf to puppet with sum d49c304a21940c7d60cf2c8173db6780 - source: "//slave01.rackspace.theforeman.org//Stage[main]/Ntp::Config/File[/etc/ntp.conf]" - tags: - - info - - file - - class - - ntp::config - - ntp - - config - time: '2017-06-28T17:28:27.185318068+00:00' - file: "/etc/puppetlabs/code/environments/production/modules/ntp/manifests/config.pp" - line: 47 -- !ruby/object:Puppet::Util::Log - level: :notice - message: "\n" - source: "//slave01.rackspace.theforeman.org//Stage[main]/Ntp::Config/File[/etc/ntp.conf]/content" - tags: - - notice - - file - - class - - ntp::config - - ntp - - config - - content - time: '2017-06-28T17:28:27.203771757+00:00' - file: "/etc/puppetlabs/code/environments/production/modules/ntp/manifests/config.pp" - line: 47 -- !ruby/object:Puppet::Util::Log - level: :notice - message: content changed '{md5}d49c304a21940c7d60cf2c8173db6780' to '{md5}b9a1b7b0853a0de6fc7302577f5b015d' - source: "//slave01.rackspace.theforeman.org//Stage[main]/Ntp::Config/File[/etc/ntp.conf]/content" - tags: - - notice - - file - - class - - ntp::config - - ntp - - config - time: '2017-06-28T17:28:27.204189460+00:00' - file: "/etc/puppetlabs/code/environments/production/modules/ntp/manifests/config.pp" - line: 47 -- !ruby/object:Puppet::Util::Log - level: :info - message: Scheduling refresh of Class[Ntp::Service] - source: "//slave01.rackspace.theforeman.org/Class[Ntp::Config]" - tags: - - info - - completed_class - - ntp::config - - ntp - - config - time: '2017-06-28T17:28:27.207109749+00:00' - file: - line: -- !ruby/object:Puppet::Util::Log - level: :info - message: Scheduling refresh of Service[ntp] - source: "//slave01.rackspace.theforeman.org/Class[Ntp::Service]" - tags: - - info - - admissible_class - - ntp::service - - ntp - - service - time: '2017-06-28T17:28:27.207924557+00:00' - file: - line: -- !ruby/object:Puppet::Util::Log - level: :notice - message: Triggered 'refresh' from 1 events - source: "//slave01.rackspace.theforeman.org//Stage[main]/Ntp::Service/Service[ntp]" - tags: - - notice - - service - - ntp - - class - - ntp::service - time: '2017-06-28T17:28:27.282770457+00:00' - file: "/etc/puppetlabs/code/environments/production/modules/ntp/manifests/service.pp" - line: 6 -- !ruby/object:Puppet::Util::Log - level: :notice - message: Applied catalog in 14.26 seconds - source: "//slave01.rackspace.theforeman.org/Puppet" - tags: - - notice - time: '2017-06-28T17:28:31.534448086+00:00' - file: - line: -catalog_uuid: e8c2c0aa-6648-4423-b4c1-a1b2b3d19653 -environment: production -configuration_version: 1498670892 -report_format: 6 -noop: false -resource_statuses: - File[/etc/puppetlabs/puppet]: !ruby/object:Puppet::Resource::Status - title: "/etc/puppetlabs/puppet" - file: "/etc/puppetlabs/code/environments/production/modules/puppet/manifests/config.pp" - line: 70 - resource: File[/etc/puppetlabs/puppet] - resource_type: File - containment_path: - - Stage[main] - - Puppet::Config - - File[/etc/puppetlabs/puppet] - evaluation_time: 0.000984931 - tags: - - file - - class - - puppet::config - - puppet - - config - time: '2017-06-28T17:28:17.787470692+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Package[puppet-agent]: !ruby/object:Puppet::Resource::Status - title: puppet-agent - file: "/etc/puppetlabs/code/environments/production/modules/puppet/manifests/agent/install.pp" - line: 4 - resource: Package[puppet-agent] - resource_type: Package - containment_path: - - Stage[main] - - Puppet::Agent::Install - - Package[puppet-agent] - evaluation_time: 0.000567559 - tags: - - package - - puppet-agent - - class - - puppet::agent::install - - puppet - - agent - - install - - puppet::agent - time: '2017-06-28T17:28:17.966249710+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Package[libxml2-dev]: !ruby/object:Puppet::Resource::Status - title: libxml2-dev - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/init.pp" - line: 103 - resource: Package[libxml2-dev] - resource_type: Package - containment_path: - - Stage[main] - - Slave - - Package[libxml2-dev] - evaluation_time: 0.000327813 - tags: - - package - - libxml2-dev - - class - - slave - time: '2017-06-28T17:28:17.998177253+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Package[libxslt1-dev]: !ruby/object:Puppet::Resource::Status - title: libxslt1-dev - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/init.pp" - line: 103 - resource: Package[libxslt1-dev] - resource_type: Package - containment_path: - - Stage[main] - - Slave - - Package[libxslt1-dev] - evaluation_time: 0.000303292 - tags: - - package - - libxslt1-dev - - class - - slave - time: '2017-06-28T17:28:17.998784708+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Package[mysql-dev]: !ruby/object:Puppet::Resource::Status - title: mysql-dev - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/init.pp" - line: 103 - resource: Package[mysql-dev] - resource_type: Package - containment_path: - - Stage[main] - - Slave - - Package[mysql-dev] - evaluation_time: 0.000261084 - tags: - - package - - mysql-dev - - class - - slave - time: '2017-06-28T17:28:17.999356455+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Package[postgresql-dev]: !ruby/object:Puppet::Resource::Status - title: postgresql-dev - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/init.pp" - line: 103 - resource: Package[postgresql-dev] - resource_type: Package - containment_path: - - Stage[main] - - Slave - - Package[postgresql-dev] - evaluation_time: 0.00022508 - tags: - - package - - postgresql-dev - - class - - slave - time: '2017-06-28T17:28:17.999928690+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Package[libkrb5-dev]: !ruby/object:Puppet::Resource::Status - title: libkrb5-dev - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/init.pp" - line: 103 - resource: Package[libkrb5-dev] - resource_type: Package - containment_path: - - Stage[main] - - Slave - - Package[libkrb5-dev] - evaluation_time: 0.000246045 - tags: - - package - - libkrb5-dev - - class - - slave - time: '2017-06-28T17:28:18.000450300+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Package[freeipmi]: !ruby/object:Puppet::Resource::Status - title: freeipmi - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/init.pp" - line: 103 - resource: Package[freeipmi] - resource_type: Package - containment_path: - - Stage[main] - - Slave - - Package[freeipmi] - evaluation_time: 0.000235189 - tags: - - package - - freeipmi - - class - - slave - time: '2017-06-28T17:28:18.000982911+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Package[ipmitool]: !ruby/object:Puppet::Resource::Status - title: ipmitool - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/init.pp" - line: 103 - resource: Package[ipmitool] - resource_type: Package - containment_path: - - Stage[main] - - Slave - - Package[ipmitool] - evaluation_time: 0.000240361 - tags: - - package - - ipmitool - - class - - slave - time: '2017-06-28T17:28:18.001509882+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Package[firefox]: !ruby/object:Puppet::Resource::Status - title: firefox - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/init.pp" - line: 103 - resource: Package[firefox] - resource_type: Package - containment_path: - - Stage[main] - - Slave - - Package[firefox] - evaluation_time: 0.000242629 - tags: - - package - - firefox - - class - - slave - time: '2017-06-28T17:28:18.002046428+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Package[xvfb]: !ruby/object:Puppet::Resource::Status - title: xvfb - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/init.pp" - line: 103 - resource: Package[xvfb] - resource_type: Package - containment_path: - - Stage[main] - - Slave - - Package[xvfb] - evaluation_time: 0.000216698 - tags: - - package - - xvfb - - class - - slave - time: '2017-06-28T17:28:18.002575284+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Package[augeas-dev]: !ruby/object:Puppet::Resource::Status - title: augeas-dev - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/init.pp" - line: 103 - resource: Package[augeas-dev] - resource_type: Package - containment_path: - - Stage[main] - - Slave - - Package[augeas-dev] - evaluation_time: 0.000271183 - tags: - - package - - augeas-dev - - class - - slave - time: '2017-06-28T17:28:18.003102130+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Package[libvirt-dev]: !ruby/object:Puppet::Resource::Status - title: libvirt-dev - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/init.pp" - line: 103 - resource: Package[libvirt-dev] - resource_type: Package - containment_path: - - Stage[main] - - Slave - - Package[libvirt-dev] - evaluation_time: 0.000273784 - tags: - - package - - libvirt-dev - - class - - slave - time: '2017-06-28T17:28:18.003712034+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Package[asciidoc]: !ruby/object:Puppet::Resource::Status - title: asciidoc - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/init.pp" - line: 103 - resource: Package[asciidoc] - resource_type: Package - containment_path: - - Stage[main] - - Slave - - Package[asciidoc] - evaluation_time: 0.000234596 - tags: - - package - - asciidoc - - class - - slave - time: '2017-06-28T17:28:18.004277972+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Package[unzip]: !ruby/object:Puppet::Resource::Status - title: unzip - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/init.pp" - line: 103 - resource: Package[unzip] - resource_type: Package - containment_path: - - Stage[main] - - Slave - - Package[unzip] - evaluation_time: 0.000253298 - tags: - - package - - unzip - - class - - slave - time: '2017-06-28T17:28:18.004774700+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Package[ansible]: !ruby/object:Puppet::Resource::Status - title: ansible - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/init.pp" - line: 103 - resource: Package[ansible] - resource_type: Package - containment_path: - - Stage[main] - - Slave - - Package[ansible] - evaluation_time: 2.372179934 - tags: - - package - - ansible - - class - - slave - time: '2017-06-28T17:28:18.005317387+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Package[sqlite3-dev]: !ruby/object:Puppet::Resource::Status - title: sqlite3-dev - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/init.pp" - line: 175 - resource: Package[sqlite3-dev] - resource_type: Package - containment_path: - - Stage[main] - - Slave - - Package[sqlite3-dev] - evaluation_time: 0.000452866 - tags: - - package - - sqlite3-dev - - class - - slave - time: '2017-06-28T17:28:20.378252717+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/usr/local/bin/JSON.sh]: !ruby/object:Puppet::Resource::Status - title: "/usr/local/bin/JSON.sh" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/init.pp" - line: 185 - resource: File[/usr/local/bin/JSON.sh] - resource_type: File - containment_path: - - Stage[main] - - Slave - - File[/usr/local/bin/JSON.sh] - evaluation_time: 0.180688491 - tags: - - file - - class - - slave - time: '2017-06-28T17:28:20.379020147+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Package[npm]: !ruby/object:Puppet::Resource::Status - title: npm - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/init.pp" - line: 196 - resource: Package[npm] - resource_type: Package - containment_path: - - Stage[main] - - Slave - - Package[npm] - evaluation_time: 0.00042077 - tags: - - package - - npm - - class - - slave - time: '2017-06-28T17:28:20.560302552+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Package[bower]: !ruby/object:Puppet::Resource::Status - title: bower - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/init.pp" - line: 200 - resource: Package[bower] - resource_type: Package - containment_path: - - Stage[main] - - Slave - - Package[bower] - evaluation_time: 0.000354721 - tags: - - package - - bower - - class - - slave - time: '2017-06-28T17:28:25.025386452+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Package[phantomjs]: !ruby/object:Puppet::Resource::Status - title: phantomjs - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/init.pp" - line: 204 - resource: Package[phantomjs] - resource_type: Package - containment_path: - - Stage[main] - - Slave - - Package[phantomjs] - evaluation_time: 1.324324656 - tags: - - package - - phantomjs - - class - - slave - time: '2017-06-28T17:28:25.026016603+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Package[grunt-cli]: !ruby/object:Puppet::Resource::Status - title: grunt-cli - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/init.pp" - line: 208 - resource: Package[grunt-cli] - resource_type: Package - containment_path: - - Stage[main] - - Slave - - Package[grunt-cli] - evaluation_time: 0.000348981 - tags: - - package - - grunt-cli - - class - - slave - time: '2017-06-28T17:28:26.351085667+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/etc/cron.daily/npm_tmp_cleaner]: !ruby/object:Puppet::Resource::Status - title: "/etc/cron.daily/npm_tmp_cleaner" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/init.pp" - line: 222 - resource: File[/etc/cron.daily/npm_tmp_cleaner] - resource_type: File - containment_path: - - Stage[main] - - Slave - - File[/etc/cron.daily/npm_tmp_cleaner] - evaluation_time: 0.001247804 - tags: - - file - - class - - slave - time: '2017-06-28T17:28:26.351705479+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Yumrepo[katello-pulp]: !ruby/object:Puppet::Resource::Status - title: katello-pulp - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/init.pp" - line: 234 - resource: Yumrepo[katello-pulp] - resource_type: Yumrepo - containment_path: - - Stage[main] - - Slave - - Yumrepo[katello-pulp] - evaluation_time: 0.000255694 - tags: - - yumrepo - - katello-pulp - - class - - slave - time: '2017-06-28T17:28:26.362165156+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Package[qpid-cpp-client-devel]: !ruby/object:Puppet::Resource::Status - title: qpid-cpp-client-devel - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/init.pp" - line: 249 - resource: Package[qpid-cpp-client-devel] - resource_type: Package - containment_path: - - Stage[main] - - Slave - - Package[qpid-cpp-client-devel] - evaluation_time: 0.000489325 - tags: - - package - - qpid-cpp-client-devel - - class - - slave - time: '2017-06-28T17:28:26.362939114+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Yumrepo[isimluk-openscap]: !ruby/object:Puppet::Resource::Status - title: isimluk-openscap - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/init.pp" - line: 256 - resource: Yumrepo[isimluk-openscap] - resource_type: Yumrepo - containment_path: - - Stage[main] - - Slave - - Yumrepo[isimluk-openscap] - evaluation_time: 0.000445712 - tags: - - yumrepo - - isimluk-openscap - - class - - slave - time: '2017-06-28T17:28:26.363635461+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Package[openscap]: !ruby/object:Puppet::Resource::Status - title: openscap - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/init.pp" - line: 263 - resource: Package[openscap] - resource_type: Package - containment_path: - - Stage[main] - - Slave - - Package[openscap] - evaluation_time: 0.000346918 - tags: - - package - - openscap - - class - - slave - time: '2017-06-28T17:28:26.364495986+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Package[scl-utils-build]: !ruby/object:Puppet::Resource::Status - title: scl-utils-build - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/init.pp" - line: 270 - resource: Package[scl-utils-build] - resource_type: Package - containment_path: - - Stage[main] - - Slave - - Package[scl-utils-build] - evaluation_time: 0.000372609 - tags: - - package - - scl-utils-build - - class - - slave - time: '2017-06-28T17:28:26.365217021+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Package[rpmdevtools]: !ruby/object:Puppet::Resource::Status - title: rpmdevtools - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/init.pp" - line: 270 - resource: Package[rpmdevtools] - resource_type: Package - containment_path: - - Stage[main] - - Slave - - Package[rpmdevtools] - evaluation_time: 0.000311366 - tags: - - package - - rpmdevtools - - class - - slave - time: '2017-06-28T17:28:26.365984628+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/etc/security/limits.d]: !ruby/object:Puppet::Resource::Status - title: "/etc/security/limits.d" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/init.pp" - line: 280 - resource: File[/etc/security/limits.d] - resource_type: File - containment_path: - - Stage[main] - - Slave - - File[/etc/security/limits.d] - evaluation_time: 0.000680176 - tags: - - file - - class - - slave - time: '2017-06-28T17:28:26.370726013+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/etc/security/limits.d/90-nproc.conf]: !ruby/object:Puppet::Resource::Status - title: "/etc/security/limits.d/90-nproc.conf" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/init.pp" - line: 289 - resource: File[/etc/security/limits.d/90-nproc.conf] - resource_type: File - containment_path: - - Stage[main] - - Slave - - File[/etc/security/limits.d/90-nproc.conf] - evaluation_time: 0.000758713 - tags: - - file - - class - - slave - time: '2017-06-28T17:28:26.371702404+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Package[java]: !ruby/object:Puppet::Resource::Status - title: java - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/java.pp" - line: 2 - resource: Package[java] - resource_type: Package - containment_path: - - Stage[main] - - Slave::Java - - Package[java] - evaluation_time: 0.000344354 - tags: - - package - - java - - class - - slave::java - - slave - time: '2017-06-28T17:28:26.373473143+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Anchor[mysql::server::start]: !ruby/object:Puppet::Resource::Status - title: mysql::server::start - file: "/etc/puppetlabs/code/environments/production/modules/mysql/manifests/server.pp" - line: 70 - resource: Anchor[mysql::server::start] - resource_type: Anchor - containment_path: - - Stage[main] - - Mysql::Server - - Anchor[mysql::server::start] - evaluation_time: 0.00013686 - tags: - - anchor - - mysql::server::start - - mysql - - server - - start - - class - - mysql::server - - slave::mysql - - slave - time: '2017-06-28T17:28:26.376287427+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/etc/my.cnf.d]: !ruby/object:Puppet::Resource::Status - title: "/etc/my.cnf.d" - file: "/etc/puppetlabs/code/environments/production/modules/mysql/manifests/server/config.pp" - line: 44 - resource: File[/etc/my.cnf.d] - resource_type: File - containment_path: - - Stage[main] - - Mysql::Server::Config - - File[/etc/my.cnf.d] - evaluation_time: 0.000632872 - tags: - - file - - class - - mysql::server::config - - mysql - - server - - config - - mysql::server - - slave::mysql - - slave - time: '2017-06-28T17:28:26.377195380+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[mysql-config-file]: !ruby/object:Puppet::Resource::Status - title: mysql-config-file - file: "/etc/puppetlabs/code/environments/production/modules/mysql/manifests/server/config.pp" - line: 33 - resource: File[mysql-config-file] - resource_type: File - containment_path: - - Stage[main] - - Mysql::Server::Config - - File[mysql-config-file] - evaluation_time: 0.000768888 - tags: - - file - - mysql-config-file - - class - - mysql::server::config - - mysql - - server - - config - - mysql::server - - slave::mysql - - slave - time: '2017-06-28T17:28:26.378213194+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Package[mysql-server]: !ruby/object:Puppet::Resource::Status - title: mysql-server - file: "/etc/puppetlabs/code/environments/production/modules/mysql/manifests/server/install.pp" - line: 6 - resource: Package[mysql-server] - resource_type: Package - containment_path: - - Stage[main] - - Mysql::Server::Install - - Package[mysql-server] - evaluation_time: 0.000362561 - tags: - - package - - mysql-server - - class - - mysql::server::install - - mysql - - server - - install - - mysql::server - - slave::mysql - - slave - time: '2017-06-28T17:28:26.380153665+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Mysql_datadir[/var/lib/mysql]: !ruby/object:Puppet::Resource::Status - title: "/var/lib/mysql" - file: "/etc/puppetlabs/code/environments/production/modules/mysql/manifests/server/installdb.pp" - line: 30 - resource: Mysql_datadir[/var/lib/mysql] - resource_type: Mysql_datadir - containment_path: - - Stage[main] - - Mysql::Server::Installdb - - Mysql_datadir[/var/lib/mysql] - evaluation_time: 0.000486042 - tags: - - mysql_datadir - - class - - mysql::server::installdb - - mysql - - server - - installdb - - mysql::server - - slave::mysql - - slave - time: '2017-06-28T17:28:26.382321230+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/var/log/mariadb/mariadb.log]: !ruby/object:Puppet::Resource::Status - title: "/var/log/mariadb/mariadb.log" - file: "/etc/puppetlabs/code/environments/production/modules/mysql/manifests/server/installdb.pp" - line: 21 - resource: File[/var/log/mariadb/mariadb.log] - resource_type: File - containment_path: - - Stage[main] - - Mysql::Server::Installdb - - File[/var/log/mariadb/mariadb.log] - evaluation_time: 0.000766505 - tags: - - file - - class - - mysql::server::installdb - - mysql - - server - - installdb - - mysql::server - - slave::mysql - - slave - time: '2017-06-28T17:28:26.383208126+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Service[mysqld]: !ruby/object:Puppet::Resource::Status - title: mysqld - file: "/etc/puppetlabs/code/environments/production/modules/mysql/manifests/server/service.pp" - line: 22 - resource: Service[mysqld] - resource_type: Service - containment_path: - - Stage[main] - - Mysql::Server::Service - - Service[mysqld] - evaluation_time: 0.019321689 - tags: - - service - - mysqld - - class - - mysql::server::service - - mysql - - server - - mysql::server - - slave::mysql - - slave - time: '2017-06-28T17:28:26.385059155+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Exec[wait_for_mysql_socket_to_open]: !ruby/object:Puppet::Resource::Status - title: wait_for_mysql_socket_to_open - file: "/etc/puppetlabs/code/environments/production/modules/mysql/manifests/server/service.pp" - line: 50 - resource: Exec[wait_for_mysql_socket_to_open] - resource_type: Exec - containment_path: - - Stage[main] - - Mysql::Server::Service - - Exec[wait_for_mysql_socket_to_open] - evaluation_time: 0.007295226 - tags: - - exec - - wait_for_mysql_socket_to_open - - class - - mysql::server::service - - mysql - - server - - service - - mysql::server - - slave::mysql - - slave - time: '2017-06-28T17:28:26.405404769+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Exec[remove install pass]: !ruby/object:Puppet::Resource::Status - title: remove install pass - file: "/etc/puppetlabs/code/environments/production/modules/mysql/manifests/server/root_password.pp" - line: 15 - resource: Exec[remove install pass] - resource_type: Exec - containment_path: - - Stage[main] - - Mysql::Server::Root_password - - Exec[remove install pass] - evaluation_time: 0.006306357 - tags: - - exec - - class - - mysql::server::root_password - - mysql - - server - - root_password - - mysql::server - - slave::mysql - - slave - time: '2017-06-28T17:28:26.414137453+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Anchor[mysql::server::end]: !ruby/object:Puppet::Resource::Status - title: mysql::server::end - file: "/etc/puppetlabs/code/environments/production/modules/mysql/manifests/server.pp" - line: 71 - resource: Anchor[mysql::server::end] - resource_type: Anchor - containment_path: - - Stage[main] - - Mysql::Server - - Anchor[mysql::server::end] - evaluation_time: 0.000175871 - tags: - - anchor - - mysql::server::end - - mysql - - server - - end - - class - - mysql::server - - slave::mysql - - slave - time: '2017-06-28T17:28:26.422052292+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Mysql_user[foreman@localhost]: !ruby/object:Puppet::Resource::Status - title: foreman@localhost - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/mysql.pp" - line: 3 - resource: Mysql_user[foreman@localhost] - resource_type: Mysql_user - containment_path: - - Stage[main] - - Slave::Mysql - - Mysql_user[foreman@localhost] - evaluation_time: 0.000701149 - tags: - - mysql_user - - class - - slave::mysql - - slave - - mysql - time: '2017-06-28T17:28:26.552414579+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Mysql_grant[foreman@localhost/*.*]: !ruby/object:Puppet::Resource::Status - title: foreman@localhost/*.* - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/mysql.pp" - line: 7 - resource: Mysql_grant[foreman@localhost/*.*] - resource_type: Mysql_grant - containment_path: - - Stage[main] - - Slave::Mysql - - Mysql_grant[foreman@localhost/*.*] - evaluation_time: 0.000809174 - tags: - - mysql_grant - - class - - slave::mysql - - slave - - mysql - time: '2017-06-28T17:28:26.657692631+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Mysql_grant[foreman@localhost/test%.*]: !ruby/object:Puppet::Resource::Status - title: foreman@localhost/test%.* - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/mysql.pp" - line: 13 - resource: Mysql_grant[foreman@localhost/test%.*] - resource_type: Mysql_grant - containment_path: - - Stage[main] - - Slave::Mysql - - Mysql_grant[foreman@localhost/test%.*] - evaluation_time: 0.000452645 - tags: - - mysql_grant - - class - - slave::mysql - - slave - - mysql - time: '2017-06-28T17:28:26.659047875+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Package[postgresql-client]: !ruby/object:Puppet::Resource::Status - title: postgresql-client - file: "/etc/puppetlabs/code/environments/production/modules/postgresql/manifests/client.pp" - line: 10 - resource: Package[postgresql-client] - resource_type: Package - containment_path: - - Stage[main] - - Postgresql::Client - - Package[postgresql-client] - evaluation_time: 0.000743177 - tags: - - package - - postgresql-client - - postgresql - - class - - postgresql::client - - client - - slave::postgresql - - slave - time: '2017-06-28T17:28:26.663302533+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/usr/local/bin/validate_postgresql_connection.sh]: !ruby/object:Puppet::Resource::Status - title: "/usr/local/bin/validate_postgresql_connection.sh" - file: "/etc/puppetlabs/code/environments/production/modules/postgresql/manifests/client.pp" - line: 17 - resource: File[/usr/local/bin/validate_postgresql_connection.sh] - resource_type: File - containment_path: - - Stage[main] - - Postgresql::Client - - File[/usr/local/bin/validate_postgresql_connection.sh] - evaluation_time: 0.170453293 - tags: - - file - - class - - postgresql::client - - postgresql - - client - - slave::postgresql - - slave - time: '2017-06-28T17:28:26.664736475+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Anchor[postgresql::server::start]: !ruby/object:Puppet::Resource::Status - title: postgresql::server::start - file: "/etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server.pp" - line: 76 - resource: Anchor[postgresql::server::start] - resource_type: Anchor - containment_path: - - Stage[main] - - Postgresql::Server - - Anchor[postgresql::server::start] - evaluation_time: 0.000218011 - tags: - - anchor - - postgresql::server::start - - postgresql - - server - - start - - class - - postgresql::server - - slave::postgresql - - slave - time: '2017-06-28T17:28:26.836844423+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Package[postgresql-server]: !ruby/object:Puppet::Resource::Status - title: postgresql-server - file: "/etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/install.pp" - line: 13 - resource: Package[postgresql-server] - resource_type: Package - containment_path: - - Stage[main] - - Postgresql::Server::Install - - Package[postgresql-server] - evaluation_time: 0.00045758 - tags: - - package - - postgresql-server - - postgresql - - class - - postgresql::server::install - - server - - install - - postgresql::server - - slave::postgresql - - slave - time: '2017-06-28T17:28:26.838435980+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/var/lib/pgsql/data]: !ruby/object:Puppet::Resource::Status - title: "/var/lib/pgsql/data" - file: "/etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/initdb.pp" - line: 36 - resource: File[/var/lib/pgsql/data] - resource_type: File - containment_path: - - Stage[main] - - Postgresql::Server::Initdb - - File[/var/lib/pgsql/data] - evaluation_time: 0.000672276 - tags: - - file - - class - - postgresql::server::initdb - - postgresql - - server - - initdb - - postgresql::server - - slave::postgresql - - slave - time: '2017-06-28T17:28:26.840414096+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Exec[postgresql_initdb]: !ruby/object:Puppet::Resource::Status - title: postgresql_initdb - file: "/etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/initdb.pp" - line: 92 - resource: Exec[postgresql_initdb] - resource_type: Exec - containment_path: - - Stage[main] - - Postgresql::Server::Initdb - - Exec[postgresql_initdb] - evaluation_time: 0.000245685 - tags: - - exec - - postgresql_initdb - - class - - postgresql::server::initdb - - postgresql - - server - - initdb - - postgresql::server - - slave::postgresql - - slave - time: '2017-06-28T17:28:26.841563640+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[systemd-override]: !ruby/object:Puppet::Resource::Status - title: systemd-override - file: "/etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/config.pp" - line: 184 - resource: File[systemd-override] - resource_type: File - containment_path: - - Stage[main] - - Postgresql::Server::Config - - File[systemd-override] - evaluation_time: 0.000604606 - tags: - - file - - systemd-override - - class - - postgresql::server::config - - postgresql - - server - - config - - postgresql::server - - slave::postgresql - - slave - time: '2017-06-28T17:28:26.845815927+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Exec[restart-systemd]: !ruby/object:Puppet::Resource::Status - title: restart-systemd - file: "/etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/config.pp" - line: 193 - resource: Exec[restart-systemd] - resource_type: Exec - containment_path: - - Stage[main] - - Postgresql::Server::Config - - Exec[restart-systemd] - evaluation_time: 0.000186888 - tags: - - exec - - restart-systemd - - class - - postgresql::server::config - - postgresql - - server - - config - - postgresql::server - - slave::postgresql - - slave - time: '2017-06-28T17:28:26.846767191+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Group[rvm]: !ruby/object:Puppet::Resource::Status - title: rvm - file: "/etc/puppetlabs/code/environments/production/modules/rvm/manifests/group.pp" - line: 3 - resource: Group[rvm] - resource_type: Group - containment_path: - - Stage[main] - - Rvm::Group - - Group[rvm] - evaluation_time: 0.000637601 - tags: - - group - - rvm - - class - - rvm::group - - rvm::rvmrc - - rvmrc - - slave - time: '2017-06-28T17:28:26.850342871+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/etc/rvmrc]: !ruby/object:Puppet::Resource::Status - title: "/etc/rvmrc" - file: "/etc/puppetlabs/code/environments/production/modules/rvm/manifests/rvmrc.pp" - line: 12 - resource: File[/etc/rvmrc] - resource_type: File - containment_path: - - Stage[main] - - Rvm::Rvmrc - - File[/etc/rvmrc] - evaluation_time: 0.000757423 - tags: - - file - - class - - rvm::rvmrc - - rvm - - rvmrc - - slave - time: '2017-06-28T17:28:26.851661505+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Package[curl]: !ruby/object:Puppet::Resource::Status - title: curl - file: "/etc/puppetlabs/code/environments/production/modules/rvm/manifests/system.pp" - line: 20 - resource: Package[curl] - resource_type: Package - containment_path: - - Stage[main] - - Rvm::System - - Package[curl] - evaluation_time: 0.000286653 - tags: - - package - - curl - - class - - rvm::system - - rvm - - system - - slave - time: '2017-06-28T17:28:26.853458031+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Gnupg_key[rvm_D39DC0E3]: !ruby/object:Puppet::Resource::Status - title: rvm_D39DC0E3 - file: "/etc/puppetlabs/code/environments/production/modules/rvm/manifests/gnupg_key.pp" - line: 7 - resource: Gnupg_key[rvm_D39DC0E3] - resource_type: Gnupg_key - containment_path: - - Stage[main] - - Rvm::Gnupg_key - - Gnupg_key[rvm_D39DC0E3] - evaluation_time: 0.011409529 - tags: - - gnupg_key - - rvm_d39dc0e3 - - class - - rvm::gnupg_key - - rvm - - rvm::system - - system - - slave - time: '2017-06-28T17:28:26.854635622+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Exec[system-rvm]: !ruby/object:Puppet::Resource::Status - title: system-rvm - file: "/etc/puppetlabs/code/environments/production/modules/rvm/manifests/system.pp" - line: 47 - resource: Exec[system-rvm] - resource_type: Exec - containment_path: - - Stage[main] - - Rvm::System - - Exec[system-rvm] - evaluation_time: 0.000320264 - tags: - - exec - - system-rvm - - class - - rvm::system - - rvm - - system - - slave - time: '2017-06-28T17:28:26.867263254+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Package[koji]: !ruby/object:Puppet::Resource::Status - title: koji - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/init.pp" - line: 355 - resource: Package[koji] - resource_type: Package - containment_path: - - Stage[main] - - Slave - - Package[koji] - evaluation_time: 0.000411329 - tags: - - package - - koji - - class - - slave - time: '2017-06-28T17:28:26.868509112+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Package[rpm-build]: !ruby/object:Puppet::Resource::Status - title: rpm-build - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/init.pp" - line: 355 - resource: Package[rpm-build] - resource_type: Package - containment_path: - - Stage[main] - - Slave - - Package[rpm-build] - evaluation_time: 0.000449141 - tags: - - package - - rpm-build - - class - - slave - time: '2017-06-28T17:28:26.869392744+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Package[tito]: !ruby/object:Puppet::Resource::Status - title: tito - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/init.pp" - line: 355 - resource: Package[tito] - resource_type: Package - containment_path: - - Stage[main] - - Slave - - Package[tito] - evaluation_time: 0.000338976 - tags: - - package - - tito - - class - - slave - time: '2017-06-28T17:28:26.870225791+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Package[git-annex]: !ruby/object:Puppet::Resource::Status - title: git-annex - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/init.pp" - line: 355 - resource: Package[git-annex] - resource_type: Package - containment_path: - - Stage[main] - - Slave - - Package[git-annex] - evaluation_time: 0.000310649 - tags: - - package - - git-annex - - class - - slave - time: '2017-06-28T17:28:26.870970130+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Package[pyliblzma]: !ruby/object:Puppet::Resource::Status - title: pyliblzma - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/init.pp" - line: 355 - resource: Package[pyliblzma] - resource_type: Package - containment_path: - - Stage[main] - - Slave - - Package[pyliblzma] - evaluation_time: 0.000446293 - tags: - - package - - pyliblzma - - class - - slave - time: '2017-06-28T17:28:26.871671749+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Package[wget]: !ruby/object:Puppet::Resource::Status - title: wget - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/vagrant.pp" - line: 17 - resource: Package[wget] - resource_type: Package - containment_path: - - Stage[main] - - Slave::Vagrant - - Package[wget] - evaluation_time: 0.000358016 - tags: - - package - - wget - - class - - slave::vagrant - - slave - - vagrant - time: '2017-06-28T17:28:26.873094764+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Exec[wget -O /root/vagrant_package https://releases.hashicorp.com/vagrant/1.4.2/vagrant_1.4.2_x86_64.rpm]: !ruby/object:Puppet::Resource::Status - title: wget -O /root/vagrant_package https://releases.hashicorp.com/vagrant/1.4.2/vagrant_1.4.2_x86_64.rpm - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/vagrant.pp" - line: 18 - resource: Exec[wget -O /root/vagrant_package https://releases.hashicorp.com/vagrant/1.4.2/vagrant_1.4.2_x86_64.rpm] - resource_type: Exec - containment_path: - - Stage[main] - - Slave::Vagrant - - Exec[wget -O /root/vagrant_package https://releases.hashicorp.com/vagrant/1.4.2/vagrant_1.4.2_x86_64.rpm] - evaluation_time: 0.000209506 - tags: - - exec - - class - - slave::vagrant - - slave - - vagrant - time: '2017-06-28T17:28:26.873797259+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Package[vagrant]: !ruby/object:Puppet::Resource::Status - title: vagrant - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/vagrant.pp" - line: 23 - resource: Package[vagrant] - resource_type: Package - containment_path: - - Stage[main] - - Slave::Vagrant - - Package[vagrant] - evaluation_time: 0.000698662 - tags: - - package - - vagrant - - class - - slave::vagrant - - slave - time: '2017-06-28T17:28:27.051378397+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/etc/cron.daily/xvfb_cleaner]: !ruby/object:Puppet::Resource::Status - title: "/etc/cron.daily/xvfb_cleaner" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/init.pp" - line: 417 - resource: File[/etc/cron.daily/xvfb_cleaner] - resource_type: File - containment_path: - - Stage[main] - - Slave - - File[/etc/cron.daily/xvfb_cleaner] - evaluation_time: 0.001042325 - tags: - - file - - class - - slave - time: '2017-06-28T17:28:27.052555272+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/etc/cron.daily/ruby_cleaner]: !ruby/object:Puppet::Resource::Status - title: "/etc/cron.daily/ruby_cleaner" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/init.pp" - line: 426 - resource: File[/etc/cron.daily/ruby_cleaner] - resource_type: File - containment_path: - - Stage[main] - - Slave - - File[/etc/cron.daily/ruby_cleaner] - evaluation_time: 0.000893287 - tags: - - file - - class - - slave - time: '2017-06-28T17:28:27.053834708+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Exec[create-swap]: !ruby/object:Puppet::Resource::Status - title: create-swap - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/swap.pp" - line: 2 - resource: Exec[create-swap] - resource_type: Exec - containment_path: - - Stage[main] - - Slave::Swap - - Exec[create-swap] - evaluation_time: 0.000260315 - tags: - - exec - - create-swap - - class - - slave::swap - - slave - - swap - time: '2017-06-28T17:28:27.055060816+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Exec[enable-swap]: !ruby/object:Puppet::Resource::Status - title: enable-swap - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/swap.pp" - line: 6 - resource: Exec[enable-swap] - resource_type: Exec - containment_path: - - Stage[main] - - Slave::Swap - - Exec[enable-swap] - evaluation_time: 0.012483648 - tags: - - exec - - enable-swap - - class - - slave::swap - - slave - - swap - time: '2017-06-28T17:28:27.055820478+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Mounttab[swap]: !ruby/object:Puppet::Resource::Status - title: swap - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/swap.pp" - line: 10 - resource: Mounttab[swap] - resource_type: Mounttab - containment_path: - - Stage[main] - - Slave::Swap - - Mounttab[swap] - evaluation_time: 0.014695739 - tags: - - mounttab - - swap - - class - - slave::swap - - slave - time: '2017-06-28T17:28:27.069264873+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Anchor[sudo::begin]: !ruby/object:Puppet::Resource::Status - title: sudo::begin - file: "/etc/puppetlabs/code/environments/production/modules/sudo/manifests/init.pp" - line: 173 - resource: Anchor[sudo::begin] - resource_type: Anchor - containment_path: - - Stage[main] - - Sudo - - Anchor[sudo::begin] - evaluation_time: 0.000182612 - tags: - - anchor - - sudo::begin - - sudo - - begin - - class - - users - time: '2017-06-28T17:28:27.086166063+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Package[sudo]: !ruby/object:Puppet::Resource::Status - title: sudo - file: "/etc/puppetlabs/code/environments/production/modules/sudo/manifests/package.pp" - line: 77 - resource: Package[sudo] - resource_type: Package - containment_path: - - Stage[main] - - Sudo::Package - - Package[sudo] - evaluation_time: 0.000260185 - tags: - - package - - sudo - - class - - sudo::package - - users - time: '2017-06-28T17:28:27.087540138+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/etc/sudoers]: !ruby/object:Puppet::Resource::Status - title: "/etc/sudoers" - file: "/etc/puppetlabs/code/environments/production/modules/sudo/manifests/init.pp" - line: 137 - resource: File[/etc/sudoers] - resource_type: File - containment_path: - - Stage[main] - - Sudo - - File[/etc/sudoers] - evaluation_time: 0.001022113 - tags: - - file - - class - - sudo - - users - time: '2017-06-28T17:28:27.088453162+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/etc/sudoers.d]: !ruby/object:Puppet::Resource::Status - title: "/etc/sudoers.d" - file: "/etc/puppetlabs/code/environments/production/modules/sudo/manifests/init.pp" - line: 147 - resource: File[/etc/sudoers.d] - resource_type: File - containment_path: - - Stage[main] - - Sudo - - File[/etc/sudoers.d] - evaluation_time: 0.001111283 - tags: - - file - - class - - sudo - - users - time: '2017-06-28T17:28:27.104270620+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Anchor[sudo::end]: !ruby/object:Puppet::Resource::Status - title: sudo::end - file: "/etc/puppetlabs/code/environments/production/modules/sudo/manifests/init.pp" - line: 175 - resource: Anchor[sudo::end] - resource_type: Anchor - containment_path: - - Stage[main] - - Sudo - - Anchor[sudo::end] - evaluation_time: 0.000182627 - tags: - - anchor - - sudo::end - - sudo - - end - - class - - users - time: '2017-06-28T17:28:27.106027898+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/etc/motd]: !ruby/object:Puppet::Resource::Status - title: "/etc/motd" - file: "/etc/puppetlabs/code/environments/production/modules/motd/manifests/init.pp" - line: 42 - resource: File[/etc/motd] - resource_type: File - containment_path: - - Stage[main] - - Motd - - File[/etc/motd] - evaluation_time: 0.001164107 - tags: - - file - - class - - motd - - utility - time: '2017-06-28T17:28:27.113188999+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Package[vim]: !ruby/object:Puppet::Resource::Status - title: vim - file: "/etc/puppetlabs/code/environments/production/modules/utility/manifests/init.pp" - line: 4 - resource: Package[vim] - resource_type: Package - containment_path: - - Stage[main] - - Utility - - Package[vim] - evaluation_time: 0.000479061 - tags: - - package - - vim - - class - - utility - time: '2017-06-28T17:28:27.115118530+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Package[htop]: !ruby/object:Puppet::Resource::Status - title: htop - file: "/etc/puppetlabs/code/environments/production/modules/utility/manifests/init.pp" - line: 12 - resource: Package[htop] - resource_type: Package - containment_path: - - Stage[main] - - Utility - - Package[htop] - evaluation_time: 0.000408461 - tags: - - package - - htop - - class - - utility - time: '2017-06-28T17:28:27.116200767+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Package[iftop]: !ruby/object:Puppet::Resource::Status - title: iftop - file: "/etc/puppetlabs/code/environments/production/modules/utility/manifests/init.pp" - line: 16 - resource: Package[iftop] - resource_type: Package - containment_path: - - Stage[main] - - Utility - - Package[iftop] - evaluation_time: 0.000416563 - tags: - - package - - iftop - - class - - utility - time: '2017-06-28T17:28:27.117206693+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Package[screen]: !ruby/object:Puppet::Resource::Status - title: screen - file: "/etc/puppetlabs/code/environments/production/modules/utility/manifests/init.pp" - line: 20 - resource: Package[screen] - resource_type: Package - containment_path: - - Stage[main] - - Utility - - Package[screen] - evaluation_time: 0.000379026 - tags: - - package - - screen - - class - - utility - time: '2017-06-28T17:28:27.118137780+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Package[ruby-shadow]: !ruby/object:Puppet::Resource::Status - title: ruby-shadow - file: "/etc/puppetlabs/code/environments/production/modules/utility/manifests/init.pp" - line: 29 - resource: Package[ruby-shadow] - resource_type: Package - containment_path: - - Stage[main] - - Utility - - Package[ruby-shadow] - evaluation_time: 0.000399694 - tags: - - package - - ruby-shadow - - class - - utility - time: '2017-06-28T17:28:27.118965295+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Mailalias[sysadmins]: !ruby/object:Puppet::Resource::Status - title: sysadmins - file: "/etc/puppetlabs/code/environments/production/modules/utility/manifests/init.pp" - line: 34 - resource: Mailalias[sysadmins] - resource_type: Mailalias - containment_path: - - Stage[main] - - Utility - - Mailalias[sysadmins] - evaluation_time: 0.000278912 - tags: - - mailalias - - sysadmins - - class - - utility - time: '2017-06-28T17:28:27.133218392+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Mailalias[root]: !ruby/object:Puppet::Resource::Status - title: root - file: "/etc/puppetlabs/code/environments/production/modules/utility/manifests/init.pp" - line: 38 - resource: Mailalias[root] - resource_type: Mailalias - containment_path: - - Stage[main] - - Utility - - Mailalias[root] - evaluation_time: 0.000166803 - tags: - - mailalias - - root - - class - - utility - time: '2017-06-28T17:28:27.133748018+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Package[git]: !ruby/object:Puppet::Resource::Status - title: git - file: "/etc/puppetlabs/code/environments/production/modules/git/manifests/install.pp" - line: 7 - resource: Package[git] - resource_type: Package - containment_path: - - Stage[main] - - Git::Install - - Package[git] - evaluation_time: 0.000276485 - tags: - - package - - git - - class - - git::install - - install - time: '2017-06-28T17:28:27.135031392+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Package[ntp]: !ruby/object:Puppet::Resource::Status - title: ntp - file: "/etc/puppetlabs/code/environments/production/modules/ntp/manifests/install.pp" - line: 7 - resource: Package[ntp] - resource_type: Package - containment_path: - - Stage[main] - - Ntp::Install - - Package[ntp] - evaluation_time: 0.000226232 - tags: - - package - - ntp - - class - - ntp::install - - install - time: '2017-06-28T17:28:27.136250990+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/etc/ntp.conf]: !ruby/object:Puppet::Resource::Status - title: "/etc/ntp.conf" - file: "/etc/puppetlabs/code/environments/production/modules/ntp/manifests/config.pp" - line: 47 - resource: File[/etc/ntp.conf] - resource_type: File - containment_path: - - Stage[main] - - Ntp::Config - - File[/etc/ntp.conf] - evaluation_time: 0.06747645 - tags: - - file - - class - - ntp::config - - ntp - - config - time: '2017-06-28T17:28:27.137353657+00:00' - failed: false - changed: true - out_of_sync: true - skipped: false - change_count: 1 - out_of_sync_count: 1 - events: - - !ruby/object:Puppet::Transaction::Event - audited: false - property: content - previous_value: "{md5}d49c304a21940c7d60cf2c8173db6780" - desired_value: "{md5}b9a1b7b0853a0de6fc7302577f5b015d" - historical_value: - message: content changed '{md5}d49c304a21940c7d60cf2c8173db6780' to '{md5}b9a1b7b0853a0de6fc7302577f5b015d' - name: :content_changed - status: success - time: 2017-06-28 17:28:27.146638339 +00:00 - redacted: - corrective_change: true - corrective_change: true - File[/etc/ntp/step-tickers]: !ruby/object:Puppet::Resource::Status - title: "/etc/ntp/step-tickers" - file: "/etc/puppetlabs/code/environments/production/modules/ntp/manifests/config.pp" - line: 69 - resource: File[/etc/ntp/step-tickers] - resource_type: File - containment_path: - - Stage[main] - - Ntp::Config - - File[/etc/ntp/step-tickers] - evaluation_time: 0.000648084 - tags: - - file - - class - - ntp::config - - ntp - - config - time: '2017-06-28T17:28:27.205648386+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Service[ntp]: !ruby/object:Puppet::Resource::Status - title: ntp - file: "/etc/puppetlabs/code/environments/production/modules/ntp/manifests/service.pp" - line: 6 - resource: Service[ntp] - resource_type: Service - containment_path: - - Stage[main] - - Ntp::Service - - Service[ntp] - evaluation_time: 0.023300394 - tags: - - service - - ntp - - class - - ntp::service - time: '2017-06-28T17:28:27.208604326+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/root/.ssh]: !ruby/object:Puppet::Resource::Status - title: "/root/.ssh" - file: "/etc/puppetlabs/code/environments/production/modules/ssh/manifests/init.pp" - line: 2 - resource: File[/root/.ssh] - resource_type: File - containment_path: - - Stage[main] - - Ssh - - File[/root/.ssh] - evaluation_time: 0.000989125 - tags: - - file - - class - - ssh - time: '2017-06-28T17:28:27.285109188+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/root/.ssh/authorized_keys]: !ruby/object:Puppet::Resource::Status - title: "/root/.ssh/authorized_keys" - file: "/etc/puppetlabs/code/environments/production/modules/ssh/manifests/init.pp" - line: 8 - resource: File[/root/.ssh/authorized_keys] - resource_type: File - containment_path: - - Stage[main] - - Ssh - - File[/root/.ssh/authorized_keys] - evaluation_time: 0.000204415 - tags: - - file - - class - - ssh - time: '2017-06-28T17:28:27.286347705+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/etc/ssh/sshd_config]: !ruby/object:Puppet::Resource::Status - title: "/etc/ssh/sshd_config" - file: "/etc/puppetlabs/code/environments/production/modules/ssh/manifests/init.pp" - line: 23 - resource: File[/etc/ssh/sshd_config] - resource_type: File - containment_path: - - Stage[main] - - Ssh - - File[/etc/ssh/sshd_config] - evaluation_time: 0.00052386 - tags: - - file - - class - - ssh - time: '2017-06-28T17:28:27.286982770+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Sshd_config[PermitRootLogin]: !ruby/object:Puppet::Resource::Status - title: PermitRootLogin - file: "/etc/puppetlabs/code/environments/production/modules/ssh/manifests/init.pp" - line: 37 - resource: Sshd_config[PermitRootLogin] - resource_type: Sshd_config - containment_path: - - Stage[main] - - Ssh - - Sshd_config[PermitRootLogin] - evaluation_time: 0.040962276 - tags: - - sshd_config - - permitrootlogin - - class - - ssh - time: '2017-06-28T17:28:27.287963075+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Sshd_config[PasswordAuthentication]: !ruby/object:Puppet::Resource::Status - title: PasswordAuthentication - file: "/etc/puppetlabs/code/environments/production/modules/ssh/manifests/init.pp" - line: 42 - resource: Sshd_config[PasswordAuthentication] - resource_type: Sshd_config - containment_path: - - Stage[main] - - Ssh - - Sshd_config[PasswordAuthentication] - evaluation_time: 0.004827075 - tags: - - sshd_config - - passwordauthentication - - class - - ssh - time: '2017-06-28T17:28:27.329243984+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Sshd_config[StrictModes]: !ruby/object:Puppet::Resource::Status - title: StrictModes - file: "/etc/puppetlabs/code/environments/production/modules/ssh/manifests/init.pp" - line: 47 - resource: Sshd_config[StrictModes] - resource_type: Sshd_config - containment_path: - - Stage[main] - - Ssh - - Sshd_config[StrictModes] - evaluation_time: 0.00378184 - tags: - - sshd_config - - strictmodes - - class - - ssh - time: '2017-06-28T17:28:27.334324398+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Sshd_config[LogLevel]: !ruby/object:Puppet::Resource::Status - title: LogLevel - file: "/etc/puppetlabs/code/environments/production/modules/ssh/manifests/init.pp" - line: 53 - resource: Sshd_config[LogLevel] - resource_type: Sshd_config - containment_path: - - Stage[main] - - Ssh - - Sshd_config[LogLevel] - evaluation_time: 0.003218418 - tags: - - sshd_config - - loglevel - - class - - ssh - time: '2017-06-28T17:28:27.338317936+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Service[sshd]: !ruby/object:Puppet::Resource::Status - title: sshd - file: "/etc/puppetlabs/code/environments/production/modules/ssh/manifests/init.pp" - line: 30 - resource: Service[sshd] - resource_type: Service - containment_path: - - Stage[main] - - Ssh - - Service[sshd] - evaluation_time: 0.023381672 - tags: - - service - - sshd - - class - - ssh - time: '2017-06-28T17:28:27.341996357+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Package[tzdata]: !ruby/object:Puppet::Resource::Status - title: tzdata - file: "/etc/puppetlabs/code/environments/production/modules/timezone/manifests/init.pp" - line: 45 - resource: Package[tzdata] - resource_type: Package - containment_path: - - Stage[main] - - Timezone - - Package[tzdata] - evaluation_time: 0.000710593 - tags: - - package - - tzdata - - class - - timezone - time: '2017-06-28T17:28:27.367092675+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/etc/localtime]: !ruby/object:Puppet::Resource::Status - title: "/etc/localtime" - file: "/etc/puppetlabs/code/environments/production/modules/timezone/manifests/init.pp" - line: 20 - resource: File[/etc/localtime] - resource_type: File - containment_path: - - Stage[main] - - Timezone - - File[/etc/localtime] - evaluation_time: 0.00181134 - tags: - - file - - class - - timezone - time: '2017-06-28T17:28:27.368295895+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/etc/sysconfig/clock]: !ruby/object:Puppet::Resource::Status - title: "/etc/sysconfig/clock" - file: "/etc/puppetlabs/code/environments/production/modules/timezone/manifests/init.pp" - line: 49 - resource: File[/etc/sysconfig/clock] - resource_type: File - containment_path: - - Stage[main] - - Timezone - - File[/etc/sysconfig/clock] - evaluation_time: 0.00131535 - tags: - - file - - class - - timezone - time: '2017-06-28T17:28:27.370609289+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Concat_file[/etc/puppetlabs/puppet/puppet.conf]: !ruby/object:Puppet::Resource::Status - title: "/etc/puppetlabs/puppet/puppet.conf" - file: "/etc/puppetlabs/code/environments/production/modules/concat/manifests/init.pp" - line: 84 - resource: Concat_file[/etc/puppetlabs/puppet/puppet.conf] - resource_type: Concat_file - containment_path: - - Stage[main] - - Puppet::Config - - Concat[/etc/puppetlabs/puppet/puppet.conf] - - Concat_file[/etc/puppetlabs/puppet/puppet.conf] - evaluation_time: 0.000198968 - tags: - - concat_file - - _etc_puppetlabs_puppet_puppet.conf - - concat - - class - - puppet::config - - puppet - - config - time: '2017-06-28T17:28:27.380644964+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/etc/puppetlabs/puppet/puppet.conf]: !ruby/object:Puppet::Resource::Status - title: "/etc/puppetlabs/puppet/puppet.conf" - file: - line: - resource: File[/etc/puppetlabs/puppet/puppet.conf] - resource_type: File - containment_path: - - Stage[main] - - Puppet::Config - - Concat[/etc/puppetlabs/puppet/puppet.conf] - - File[/etc/puppetlabs/puppet/puppet.conf] - evaluation_time: 0.000870293 - tags: - - file - - concat_file - - _etc_puppetlabs_puppet_puppet.conf - - concat - - class - - puppet::config - - puppet - - config - time: '2017-06-28T17:28:27.381313389+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/etc/puppetlabs/puppet/auth.conf]: !ruby/object:Puppet::Resource::Status - title: "/etc/puppetlabs/puppet/auth.conf" - file: "/etc/puppetlabs/code/environments/production/modules/puppet/manifests/config.pp" - line: 88 - resource: File[/etc/puppetlabs/puppet/auth.conf] - resource_type: File - containment_path: - - Stage[main] - - Puppet::Config - - File[/etc/puppetlabs/puppet/auth.conf] - evaluation_time: 0.000347568 - tags: - - file - - class - - puppet::config - - puppet - - config - time: '2017-06-28T17:28:27.383262329+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Concat_file[/var/lib/pgsql/data/pg_hba.conf]: !ruby/object:Puppet::Resource::Status - title: "/var/lib/pgsql/data/pg_hba.conf" - file: "/etc/puppetlabs/code/environments/production/modules/concat/manifests/init.pp" - line: 84 - resource: Concat_file[/var/lib/pgsql/data/pg_hba.conf] - resource_type: Concat_file - containment_path: - - Stage[main] - - Postgresql::Server::Config - - Concat[/var/lib/pgsql/data/pg_hba.conf] - - Concat_file[/var/lib/pgsql/data/pg_hba.conf] - evaluation_time: 0.000288182 - tags: - - concat_file - - _var_lib_pgsql_data_pg_hba.conf - - concat - - class - - postgresql::server::config - - postgresql - - server - - config - - postgresql::server - - slave::postgresql - - slave - time: '2017-06-28T17:28:27.392060252+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/var/lib/pgsql/data/pg_hba.conf]: !ruby/object:Puppet::Resource::Status - title: "/var/lib/pgsql/data/pg_hba.conf" - file: - line: - resource: File[/var/lib/pgsql/data/pg_hba.conf] - resource_type: File - containment_path: - - Stage[main] - - Postgresql::Server::Config - - Concat[/var/lib/pgsql/data/pg_hba.conf] - - File[/var/lib/pgsql/data/pg_hba.conf] - evaluation_time: 0.000806323 - tags: - - file - - concat_file - - _var_lib_pgsql_data_pg_hba.conf - - concat - - class - - postgresql::server::config - - postgresql - - server - - config - - postgresql::server - - slave::postgresql - - slave - time: '2017-06-28T17:28:27.392750449+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Concat_fragment[/var/lib/pgsql/data/pg_hba.conf_header]: !ruby/object:Puppet::Resource::Status - title: "/var/lib/pgsql/data/pg_hba.conf_header" - file: "/etc/puppetlabs/code/environments/production/modules/concat/manifests/init.pp" - line: 104 - resource: Concat_fragment[/var/lib/pgsql/data/pg_hba.conf_header] - resource_type: Concat_fragment - containment_path: - - Stage[main] - - Postgresql::Server::Config - - Concat[/var/lib/pgsql/data/pg_hba.conf] - - Concat_fragment[/var/lib/pgsql/data/pg_hba.conf_header] - evaluation_time: 0.000119602 - tags: - - concat_fragment - - _var_lib_pgsql_data_pg_hba.conf - - concat - - class - - postgresql::server::config - - postgresql - - server - - config - - postgresql::server - - slave::postgresql - - slave - time: '2017-06-28T17:28:27.394438336+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Postgresql_conf[port]: !ruby/object:Puppet::Resource::Status - title: port - file: "/etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/config_entry.pp" - line: 161 - resource: Postgresql_conf[port] - resource_type: Postgresql_conf - containment_path: - - Stage[main] - - Postgresql::Server::Config - - Postgresql::Server::Config_entry[port] - - Postgresql_conf[port] - evaluation_time: 0.000380861 - tags: - - postgresql_conf - - port - - postgresql::server::config_entry - - postgresql - - server - - config_entry - - class - - postgresql::server::config - - config - - postgresql::server - - slave::postgresql - - slave - time: '2017-06-28T17:28:27.403529410+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Postgresql_conf[data_directory]: !ruby/object:Puppet::Resource::Status - title: data_directory - file: "/etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/config_entry.pp" - line: 161 - resource: Postgresql_conf[data_directory] - resource_type: Postgresql_conf - containment_path: - - Stage[main] - - Postgresql::Server::Config - - Postgresql::Server::Config_entry[data_directory] - - Postgresql_conf[data_directory] - evaluation_time: 0.000176058 - tags: - - postgresql_conf - - data_directory - - postgresql::server::config_entry - - postgresql - - server - - config_entry - - class - - postgresql::server::config - - config - - postgresql::server - - slave::postgresql - - slave - time: '2017-06-28T17:28:27.404543462+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Concat_file[/var/lib/pgsql/data/pg_ident.conf]: !ruby/object:Puppet::Resource::Status - title: "/var/lib/pgsql/data/pg_ident.conf" - file: "/etc/puppetlabs/code/environments/production/modules/concat/manifests/init.pp" - line: 84 - resource: Concat_file[/var/lib/pgsql/data/pg_ident.conf] - resource_type: Concat_file - containment_path: - - Stage[main] - - Postgresql::Server::Config - - Concat[/var/lib/pgsql/data/pg_ident.conf] - - Concat_file[/var/lib/pgsql/data/pg_ident.conf] - evaluation_time: 0.000225403 - tags: - - concat_file - - _var_lib_pgsql_data_pg_ident.conf - - concat - - class - - postgresql::server::config - - postgresql - - server - - config - - postgresql::server - - slave::postgresql - - slave - time: '2017-06-28T17:28:27.407827830+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/var/lib/pgsql/data/pg_ident.conf]: !ruby/object:Puppet::Resource::Status - title: "/var/lib/pgsql/data/pg_ident.conf" - file: - line: - resource: File[/var/lib/pgsql/data/pg_ident.conf] - resource_type: File - containment_path: - - Stage[main] - - Postgresql::Server::Config - - Concat[/var/lib/pgsql/data/pg_ident.conf] - - File[/var/lib/pgsql/data/pg_ident.conf] - evaluation_time: 0.000869553 - tags: - - file - - concat_file - - _var_lib_pgsql_data_pg_ident.conf - - concat - - class - - postgresql::server::config - - postgresql - - server - - config - - postgresql::server - - slave::postgresql - - slave - time: '2017-06-28T17:28:27.408443093+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Concat_fragment[/var/lib/pgsql/data/pg_ident.conf_header]: !ruby/object:Puppet::Resource::Status - title: "/var/lib/pgsql/data/pg_ident.conf_header" - file: "/etc/puppetlabs/code/environments/production/modules/concat/manifests/init.pp" - line: 104 - resource: Concat_fragment[/var/lib/pgsql/data/pg_ident.conf_header] - resource_type: Concat_fragment - containment_path: - - Stage[main] - - Postgresql::Server::Config - - Concat[/var/lib/pgsql/data/pg_ident.conf] - - Concat_fragment[/var/lib/pgsql/data/pg_ident.conf_header] - evaluation_time: 9.7342e-05 - tags: - - concat_fragment - - _var_lib_pgsql_data_pg_ident.conf - - concat - - class - - postgresql::server::config - - postgresql - - server - - config - - postgresql::server - - slave::postgresql - - slave - time: '2017-06-28T17:28:27.410177419+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - User[gregsutcliffe]: !ruby/object:Puppet::Resource::Status - title: gregsutcliffe - file: "/etc/puppetlabs/code/environments/production/modules/users/manifests/account.pp" - line: 7 - resource: User[gregsutcliffe] - resource_type: User - containment_path: - - Stage[main] - - Users - - Users::Account[gregsutcliffe] - - User[gregsutcliffe] - evaluation_time: 0.000833595 - tags: - - user - - gregsutcliffe - - users::account - - users - - account - - class - time: '2017-06-28T17:28:27.411519656+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/gregsutcliffe]: !ruby/object:Puppet::Resource::Status - title: "/home/gregsutcliffe" - file: "/etc/puppetlabs/code/environments/production/modules/users/manifests/account.pp" - line: 16 - resource: File[/home/gregsutcliffe] - resource_type: File - containment_path: - - Stage[main] - - Users - - Users::Account[gregsutcliffe] - - File[/home/gregsutcliffe] - evaluation_time: 0.00064838 - tags: - - file - - users::account - - users - - account - - gregsutcliffe - - class - time: '2017-06-28T17:28:27.412713800+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/gregsutcliffe/.ssh]: !ruby/object:Puppet::Resource::Status - title: "/home/gregsutcliffe/.ssh" - file: "/etc/puppetlabs/code/environments/production/modules/users/manifests/account.pp" - line: 23 - resource: File[/home/gregsutcliffe/.ssh] - resource_type: File - containment_path: - - Stage[main] - - Users - - Users::Account[gregsutcliffe] - - File[/home/gregsutcliffe/.ssh] - evaluation_time: 0.000607241 - tags: - - file - - users::account - - users - - account - - gregsutcliffe - - class - time: '2017-06-28T17:28:27.413679776+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/gregsutcliffe/.ssh/authorized_keys]: !ruby/object:Puppet::Resource::Status - title: "/home/gregsutcliffe/.ssh/authorized_keys" - file: "/etc/puppetlabs/code/environments/production/modules/users/manifests/account.pp" - line: 30 - resource: File[/home/gregsutcliffe/.ssh/authorized_keys] - resource_type: File - containment_path: - - Stage[main] - - Users - - Users::Account[gregsutcliffe] - - File[/home/gregsutcliffe/.ssh/authorized_keys] - evaluation_time: 0.000634652 - tags: - - file - - users::account - - users - - account - - gregsutcliffe - - class - time: '2017-06-28T17:28:27.414599319+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - User[ohadlevy]: !ruby/object:Puppet::Resource::Status - title: ohadlevy - file: "/etc/puppetlabs/code/environments/production/modules/users/manifests/account.pp" - line: 7 - resource: User[ohadlevy] - resource_type: User - containment_path: - - Stage[main] - - Users - - Users::Account[ohadlevy] - - User[ohadlevy] - evaluation_time: 0.000541815 - tags: - - user - - ohadlevy - - users::account - - users - - account - - class - time: '2017-06-28T17:28:27.416000328+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/ohadlevy]: !ruby/object:Puppet::Resource::Status - title: "/home/ohadlevy" - file: "/etc/puppetlabs/code/environments/production/modules/users/manifests/account.pp" - line: 16 - resource: File[/home/ohadlevy] - resource_type: File - containment_path: - - Stage[main] - - Users - - Users::Account[ohadlevy] - - File[/home/ohadlevy] - evaluation_time: 0.000531866 - tags: - - file - - users::account - - users - - account - - ohadlevy - - class - time: '2017-06-28T17:28:27.416821784+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/ohadlevy/.ssh]: !ruby/object:Puppet::Resource::Status - title: "/home/ohadlevy/.ssh" - file: "/etc/puppetlabs/code/environments/production/modules/users/manifests/account.pp" - line: 23 - resource: File[/home/ohadlevy/.ssh] - resource_type: File - containment_path: - - Stage[main] - - Users - - Users::Account[ohadlevy] - - File[/home/ohadlevy/.ssh] - evaluation_time: 0.000504625 - tags: - - file - - users::account - - users - - account - - ohadlevy - - class - time: '2017-06-28T17:28:27.417706448+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/ohadlevy/.ssh/authorized_keys]: !ruby/object:Puppet::Resource::Status - title: "/home/ohadlevy/.ssh/authorized_keys" - file: "/etc/puppetlabs/code/environments/production/modules/users/manifests/account.pp" - line: 30 - resource: File[/home/ohadlevy/.ssh/authorized_keys] - resource_type: File - containment_path: - - Stage[main] - - Users - - Users::Account[ohadlevy] - - File[/home/ohadlevy/.ssh/authorized_keys] - evaluation_time: 0.000609831 - tags: - - file - - users::account - - users - - account - - ohadlevy - - class - time: '2017-06-28T17:28:27.418475395+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - User[bgupta]: !ruby/object:Puppet::Resource::Status - title: bgupta - file: "/etc/puppetlabs/code/environments/production/modules/users/manifests/account.pp" - line: 7 - resource: User[bgupta] - resource_type: User - containment_path: - - Stage[main] - - Users - - Users::Account[bgupta] - - User[bgupta] - evaluation_time: 0.00055314 - tags: - - user - - bgupta - - users::account - - users - - account - - class - time: '2017-06-28T17:28:27.419811481+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/bgupta]: !ruby/object:Puppet::Resource::Status - title: "/home/bgupta" - file: "/etc/puppetlabs/code/environments/production/modules/users/manifests/account.pp" - line: 16 - resource: File[/home/bgupta] - resource_type: File - containment_path: - - Stage[main] - - Users - - Users::Account[bgupta] - - File[/home/bgupta] - evaluation_time: 0.000571784 - tags: - - file - - users::account - - users - - account - - bgupta - - class - time: '2017-06-28T17:28:27.420643883+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/bgupta/.ssh]: !ruby/object:Puppet::Resource::Status - title: "/home/bgupta/.ssh" - file: "/etc/puppetlabs/code/environments/production/modules/users/manifests/account.pp" - line: 23 - resource: File[/home/bgupta/.ssh] - resource_type: File - containment_path: - - Stage[main] - - Users - - Users::Account[bgupta] - - File[/home/bgupta/.ssh] - evaluation_time: 0.000504438 - tags: - - file - - users::account - - users - - account - - bgupta - - class - time: '2017-06-28T17:28:27.421475760+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/bgupta/.ssh/authorized_keys]: !ruby/object:Puppet::Resource::Status - title: "/home/bgupta/.ssh/authorized_keys" - file: "/etc/puppetlabs/code/environments/production/modules/users/manifests/account.pp" - line: 30 - resource: File[/home/bgupta/.ssh/authorized_keys] - resource_type: File - containment_path: - - Stage[main] - - Users - - Users::Account[bgupta] - - File[/home/bgupta/.ssh/authorized_keys] - evaluation_time: 0.000592365 - tags: - - file - - users::account - - users - - account - - bgupta - - class - time: '2017-06-28T17:28:27.422246159+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - User[lzap]: !ruby/object:Puppet::Resource::Status - title: lzap - file: "/etc/puppetlabs/code/environments/production/modules/users/manifests/account.pp" - line: 7 - resource: User[lzap] - resource_type: User - containment_path: - - Stage[main] - - Users - - Users::Account[lzap] - - User[lzap] - evaluation_time: 0.000594324 - tags: - - user - - lzap - - users::account - - users - - account - - class - time: '2017-06-28T17:28:27.423622507+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/lzap]: !ruby/object:Puppet::Resource::Status - title: "/home/lzap" - file: "/etc/puppetlabs/code/environments/production/modules/users/manifests/account.pp" - line: 16 - resource: File[/home/lzap] - resource_type: File - containment_path: - - Stage[main] - - Users - - Users::Account[lzap] - - File[/home/lzap] - evaluation_time: 0.000734493 - tags: - - file - - users::account - - users - - account - - lzap - - class - time: '2017-06-28T17:28:27.424523828+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/lzap/.ssh]: !ruby/object:Puppet::Resource::Status - title: "/home/lzap/.ssh" - file: "/etc/puppetlabs/code/environments/production/modules/users/manifests/account.pp" - line: 23 - resource: File[/home/lzap/.ssh] - resource_type: File - containment_path: - - Stage[main] - - Users - - Users::Account[lzap] - - File[/home/lzap/.ssh] - evaluation_time: 0.000558065 - tags: - - file - - users::account - - users - - account - - lzap - - class - time: '2017-06-28T17:28:27.425508218+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/lzap/.ssh/authorized_keys]: !ruby/object:Puppet::Resource::Status - title: "/home/lzap/.ssh/authorized_keys" - file: "/etc/puppetlabs/code/environments/production/modules/users/manifests/account.pp" - line: 30 - resource: File[/home/lzap/.ssh/authorized_keys] - resource_type: File - containment_path: - - Stage[main] - - Users - - Users::Account[lzap] - - File[/home/lzap/.ssh/authorized_keys] - evaluation_time: 0.000694168 - tags: - - file - - users::account - - users - - account - - lzap - - class - time: '2017-06-28T17:28:27.426456051+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - User[dcleal]: !ruby/object:Puppet::Resource::Status - title: dcleal - file: "/etc/puppetlabs/code/environments/production/modules/users/manifests/account.pp" - line: 7 - resource: User[dcleal] - resource_type: User - containment_path: - - Stage[main] - - Users - - Users::Account[dcleal] - - User[dcleal] - evaluation_time: 0.000533591 - tags: - - user - - dcleal - - users::account - - users - - account - - class - time: '2017-06-28T17:28:27.428051256+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/dcleal]: !ruby/object:Puppet::Resource::Status - title: "/home/dcleal" - file: "/etc/puppetlabs/code/environments/production/modules/users/manifests/account.pp" - line: 16 - resource: File[/home/dcleal] - resource_type: File - containment_path: - - Stage[main] - - Users - - Users::Account[dcleal] - - File[/home/dcleal] - evaluation_time: 0.000639164 - tags: - - file - - users::account - - users - - account - - dcleal - - class - time: '2017-06-28T17:28:27.428887426+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/dcleal/.ssh]: !ruby/object:Puppet::Resource::Status - title: "/home/dcleal/.ssh" - file: "/etc/puppetlabs/code/environments/production/modules/users/manifests/account.pp" - line: 23 - resource: File[/home/dcleal/.ssh] - resource_type: File - containment_path: - - Stage[main] - - Users - - Users::Account[dcleal] - - File[/home/dcleal/.ssh] - evaluation_time: 0.000592474 - tags: - - file - - users::account - - users - - account - - dcleal - - class - time: '2017-06-28T17:28:27.429808339+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/dcleal/.ssh/authorized_keys]: !ruby/object:Puppet::Resource::Status - title: "/home/dcleal/.ssh/authorized_keys" - file: "/etc/puppetlabs/code/environments/production/modules/users/manifests/account.pp" - line: 30 - resource: File[/home/dcleal/.ssh/authorized_keys] - resource_type: File - containment_path: - - Stage[main] - - Users - - Users::Account[dcleal] - - File[/home/dcleal/.ssh/authorized_keys] - evaluation_time: 0.000753091 - tags: - - file - - users::account - - users - - account - - dcleal - - class - time: '2017-06-28T17:28:27.430666577+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - User[ehelms]: !ruby/object:Puppet::Resource::Status - title: ehelms - file: "/etc/puppetlabs/code/environments/production/modules/users/manifests/account.pp" - line: 7 - resource: User[ehelms] - resource_type: User - containment_path: - - Stage[main] - - Users - - Users::Account[ehelms] - - User[ehelms] - evaluation_time: 0.000426503 - tags: - - user - - ehelms - - users::account - - users - - account - - class - time: '2017-06-28T17:28:27.432187824+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/ehelms]: !ruby/object:Puppet::Resource::Status - title: "/home/ehelms" - file: "/etc/puppetlabs/code/environments/production/modules/users/manifests/account.pp" - line: 16 - resource: File[/home/ehelms] - resource_type: File - containment_path: - - Stage[main] - - Users - - Users::Account[ehelms] - - File[/home/ehelms] - evaluation_time: 0.000516282 - tags: - - file - - users::account - - users - - account - - ehelms - - class - time: '2017-06-28T17:28:27.433105971+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/ehelms/.ssh]: !ruby/object:Puppet::Resource::Status - title: "/home/ehelms/.ssh" - file: "/etc/puppetlabs/code/environments/production/modules/users/manifests/account.pp" - line: 23 - resource: File[/home/ehelms/.ssh] - resource_type: File - containment_path: - - Stage[main] - - Users - - Users::Account[ehelms] - - File[/home/ehelms/.ssh] - evaluation_time: 0.0005212 - tags: - - file - - users::account - - users - - account - - ehelms - - class - time: '2017-06-28T17:28:27.433906699+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/ehelms/.ssh/authorized_keys]: !ruby/object:Puppet::Resource::Status - title: "/home/ehelms/.ssh/authorized_keys" - file: "/etc/puppetlabs/code/environments/production/modules/users/manifests/account.pp" - line: 30 - resource: File[/home/ehelms/.ssh/authorized_keys] - resource_type: File - containment_path: - - Stage[main] - - Users - - Users::Account[ehelms] - - File[/home/ehelms/.ssh/authorized_keys] - evaluation_time: 0.000624896 - tags: - - file - - users::account - - users - - account - - ehelms - - class - time: '2017-06-28T17:28:27.434799831+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - User[mmoll]: !ruby/object:Puppet::Resource::Status - title: mmoll - file: "/etc/puppetlabs/code/environments/production/modules/users/manifests/account.pp" - line: 7 - resource: User[mmoll] - resource_type: User - containment_path: - - Stage[main] - - Users - - Users::Account[mmoll] - - User[mmoll] - evaluation_time: 0.000602142 - tags: - - user - - mmoll - - users::account - - users - - account - - class - time: '2017-06-28T17:28:27.436186094+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/mmoll]: !ruby/object:Puppet::Resource::Status - title: "/home/mmoll" - file: "/etc/puppetlabs/code/environments/production/modules/users/manifests/account.pp" - line: 16 - resource: File[/home/mmoll] - resource_type: File - containment_path: - - Stage[main] - - Users - - Users::Account[mmoll] - - File[/home/mmoll] - evaluation_time: 0.000582537 - tags: - - file - - users::account - - users - - account - - mmoll - - class - time: '2017-06-28T17:28:27.437117092+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/mmoll/.ssh]: !ruby/object:Puppet::Resource::Status - title: "/home/mmoll/.ssh" - file: "/etc/puppetlabs/code/environments/production/modules/users/manifests/account.pp" - line: 23 - resource: File[/home/mmoll/.ssh] - resource_type: File - containment_path: - - Stage[main] - - Users - - Users::Account[mmoll] - - File[/home/mmoll/.ssh] - evaluation_time: 0.000583554 - tags: - - file - - users::account - - users - - account - - mmoll - - class - time: '2017-06-28T17:28:27.438098442+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/mmoll/.ssh/authorized_keys]: !ruby/object:Puppet::Resource::Status - title: "/home/mmoll/.ssh/authorized_keys" - file: "/etc/puppetlabs/code/environments/production/modules/users/manifests/account.pp" - line: 30 - resource: File[/home/mmoll/.ssh/authorized_keys] - resource_type: File - containment_path: - - Stage[main] - - Users - - Users::Account[mmoll] - - File[/home/mmoll/.ssh/authorized_keys] - evaluation_time: 0.000711738 - tags: - - file - - users::account - - users - - account - - mmoll - - class - time: '2017-06-28T17:28:27.438991637+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - User[dbristow]: !ruby/object:Puppet::Resource::Status - title: dbristow - file: "/etc/puppetlabs/code/environments/production/modules/users/manifests/account.pp" - line: 7 - resource: User[dbristow] - resource_type: User - containment_path: - - Stage[main] - - Users - - Users::Account[dbristow] - - User[dbristow] - evaluation_time: 0.000515269 - tags: - - user - - dbristow - - users::account - - users - - account - - class - time: '2017-06-28T17:28:27.440575129+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/dbristow]: !ruby/object:Puppet::Resource::Status - title: "/home/dbristow" - file: "/etc/puppetlabs/code/environments/production/modules/users/manifests/account.pp" - line: 16 - resource: File[/home/dbristow] - resource_type: File - containment_path: - - Stage[main] - - Users - - Users::Account[dbristow] - - File[/home/dbristow] - evaluation_time: 0.000545208 - tags: - - file - - users::account - - users - - account - - dbristow - - class - time: '2017-06-28T17:28:27.441564667+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/dbristow/.ssh]: !ruby/object:Puppet::Resource::Status - title: "/home/dbristow/.ssh" - file: "/etc/puppetlabs/code/environments/production/modules/users/manifests/account.pp" - line: 23 - resource: File[/home/dbristow/.ssh] - resource_type: File - containment_path: - - Stage[main] - - Users - - Users::Account[dbristow] - - File[/home/dbristow/.ssh] - evaluation_time: 0.000627389 - tags: - - file - - users::account - - users - - account - - dbristow - - class - time: '2017-06-28T17:28:27.442386095+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/dbristow/.ssh/authorized_keys]: !ruby/object:Puppet::Resource::Status - title: "/home/dbristow/.ssh/authorized_keys" - file: "/etc/puppetlabs/code/environments/production/modules/users/manifests/account.pp" - line: 30 - resource: File[/home/dbristow/.ssh/authorized_keys] - resource_type: File - containment_path: - - Stage[main] - - Users - - Users::Account[dbristow] - - File[/home/dbristow/.ssh/authorized_keys] - evaluation_time: 0.00064955 - tags: - - file - - users::account - - users - - account - - dbristow - - class - time: '2017-06-28T17:28:27.443347326+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - User[dlobatog]: !ruby/object:Puppet::Resource::Status - title: dlobatog - file: "/etc/puppetlabs/code/environments/production/modules/users/manifests/account.pp" - line: 7 - resource: User[dlobatog] - resource_type: User - containment_path: - - Stage[main] - - Users - - Users::Account[dlobatog] - - User[dlobatog] - evaluation_time: 0.000664748 - tags: - - user - - dlobatog - - users::account - - users - - account - - class - time: '2017-06-28T17:28:27.444757979+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/dlobatog]: !ruby/object:Puppet::Resource::Status - title: "/home/dlobatog" - file: "/etc/puppetlabs/code/environments/production/modules/users/manifests/account.pp" - line: 16 - resource: File[/home/dlobatog] - resource_type: File - containment_path: - - Stage[main] - - Users - - Users::Account[dlobatog] - - File[/home/dlobatog] - evaluation_time: 0.000574069 - tags: - - file - - users::account - - users - - account - - dlobatog - - class - time: '2017-06-28T17:28:27.445714757+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/dlobatog/.ssh]: !ruby/object:Puppet::Resource::Status - title: "/home/dlobatog/.ssh" - file: "/etc/puppetlabs/code/environments/production/modules/users/manifests/account.pp" - line: 23 - resource: File[/home/dlobatog/.ssh] - resource_type: File - containment_path: - - Stage[main] - - Users - - Users::Account[dlobatog] - - File[/home/dlobatog/.ssh] - evaluation_time: 0.000647361 - tags: - - file - - users::account - - users - - account - - dlobatog - - class - time: '2017-06-28T17:28:27.446660299+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/dlobatog/.ssh/authorized_keys]: !ruby/object:Puppet::Resource::Status - title: "/home/dlobatog/.ssh/authorized_keys" - file: "/etc/puppetlabs/code/environments/production/modules/users/manifests/account.pp" - line: 30 - resource: File[/home/dlobatog/.ssh/authorized_keys] - resource_type: File - containment_path: - - Stage[main] - - Users - - Users::Account[dlobatog] - - File[/home/dlobatog/.ssh/authorized_keys] - evaluation_time: 0.00085136 - tags: - - file - - users::account - - users - - account - - dlobatog - - class - time: '2017-06-28T17:28:27.447642606+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - User[jenkins]: !ruby/object:Puppet::Resource::Status - title: jenkins - file: "/etc/puppetlabs/code/environments/production/modules/users/manifests/account.pp" - line: 7 - resource: User[jenkins] - resource_type: User - containment_path: - - Stage[main] - - Users::Slave - - Users::Account[jenkins] - - User[jenkins] - evaluation_time: 0.000541596 - tags: - - user - - jenkins - - users::account - - users - - account - - class - - users::slave - - slave - time: '2017-06-28T17:28:27.449406552+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/var/lib/workspace]: !ruby/object:Puppet::Resource::Status - title: "/var/lib/workspace" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/init.pp" - line: 9 - resource: File[/var/lib/workspace] - resource_type: File - containment_path: - - Stage[main] - - Slave - - File[/var/lib/workspace] - evaluation_time: 0.000714387 - tags: - - file - - class - - slave - time: '2017-06-28T17:28:27.451298542+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/var/lib/workspace/workspace]: !ruby/object:Puppet::Resource::Status - title: "/var/lib/workspace/workspace" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/init.pp" - line: 15 - resource: File[/var/lib/workspace/workspace] - resource_type: File - containment_path: - - Stage[main] - - Slave - - File[/var/lib/workspace/workspace] - evaluation_time: 0.000592266 - tags: - - file - - class - - slave - time: '2017-06-28T17:28:27.452721950+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/tmp/tito]: !ruby/object:Puppet::Resource::Status - title: "/tmp/tito" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/init.pp" - line: 403 - resource: File[/tmp/tito] - resource_type: File - containment_path: - - Stage[main] - - Slave - - File[/tmp/tito] - evaluation_time: 0.000474054 - tags: - - file - - class - - slave - time: '2017-06-28T17:28:27.453517999+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Exec[/usr/bin/ssh-keygen -t rsa -f /home/jenkins/.ssh/id_rsa_rackspace]: !ruby/object:Puppet::Resource::Status - title: "/usr/bin/ssh-keygen -t rsa -f /home/jenkins/.ssh/id_rsa_rackspace" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/vagrant.pp" - line: 52 - resource: Exec[/usr/bin/ssh-keygen -t rsa -f /home/jenkins/.ssh/id_rsa_rackspace] - resource_type: Exec - containment_path: - - Stage[main] - - Slave::Vagrant - - Exec[/usr/bin/ssh-keygen -t rsa -f /home/jenkins/.ssh/id_rsa_rackspace] - evaluation_time: 0.000247644 - tags: - - exec - - class - - slave::vagrant - - slave - - vagrant - time: '2017-06-28T17:28:27.454303726+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins" - file: "/etc/puppetlabs/code/environments/production/modules/users/manifests/account.pp" - line: 16 - resource: File[/home/jenkins] - resource_type: File - containment_path: - - Stage[main] - - Users::Slave - - Users::Account[jenkins] - - File[/home/jenkins] - evaluation_time: 0.000729072 - tags: - - file - - users::account - - users - - account - - jenkins - - class - - users::slave - - slave - time: '2017-06-28T17:28:27.455010335+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/.gitconfig]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/.gitconfig" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/init.pp" - line: 21 - resource: File[/home/jenkins/.gitconfig] - resource_type: File - containment_path: - - Stage[main] - - Slave - - File[/home/jenkins/.gitconfig] - evaluation_time: 0.069254833 - tags: - - file - - class - - slave - time: '2017-06-28T17:28:27.456392197+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/.gemrc]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/.gemrc" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/init.pp" - line: 28 - resource: File[/home/jenkins/.gemrc] - resource_type: File - containment_path: - - Stage[main] - - Slave - - File[/home/jenkins/.gemrc] - evaluation_time: 0.070447685 - tags: - - file - - class - - slave - time: '2017-06-28T17:28:27.526028421+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/init.pp" - line: 36 - resource: File[/home/jenkins/pr_tests] - resource_type: File - containment_path: - - Stage[main] - - Slave - - File[/home/jenkins/pr_tests] - evaluation_time: 0.000852415 - tags: - - file - - class - - slave - time: '2017-06-28T17:28:27.657973390+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/cache]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/cache" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/init.pp" - line: 43 - resource: File[/home/jenkins/pr_tests/cache] - resource_type: File - containment_path: - - Stage[main] - - Slave - - File[/home/jenkins/pr_tests/cache] - evaluation_time: 0.00066009 - tags: - - file - - class - - slave - time: '2017-06-28T17:28:27.660083543+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/.config]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/.config" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/init.pp" - line: 87 - resource: File[/home/jenkins/.config] - resource_type: File - containment_path: - - Stage[main] - - Slave - - File[/home/jenkins/.config] - evaluation_time: 0.000643386 - tags: - - file - - class - - slave - time: '2017-06-28T17:28:27.661821575+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/.config/hub]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/.config/hub" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/init.pp" - line: 93 - resource: File[/home/jenkins/.config/hub] - resource_type: File - containment_path: - - Stage[main] - - Slave - - File[/home/jenkins/.config/hub] - evaluation_time: 0.000858649 - tags: - - file - - class - - slave - time: '2017-06-28T17:28:27.662686175+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/tmp]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/tmp" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/init.pp" - line: 214 - resource: File[/home/jenkins/tmp] - resource_type: File - containment_path: - - Stage[main] - - Slave - - File[/home/jenkins/tmp] - evaluation_time: 0.000563986 - tags: - - file - - class - - slave - time: '2017-06-28T17:28:27.663799562+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/.koji]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/.koji" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/init.pp" - line: 368 - resource: File[/home/jenkins/.koji] - resource_type: File - containment_path: - - Stage[main] - - Slave - - File[/home/jenkins/.koji] - evaluation_time: 0.00045488 - tags: - - file - - class - - slave - time: '2017-06-28T17:28:27.664615269+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/.titorc]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/.titorc" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/init.pp" - line: 373 - resource: File[/home/jenkins/.titorc] - resource_type: File - containment_path: - - Stage[main] - - Slave - - File[/home/jenkins/.titorc] - evaluation_time: 0.082263511 - tags: - - file - - class - - slave - time: '2017-06-28T17:28:27.665289289+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/.koji/katello-config]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/.koji/katello-config" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/init.pp" - line: 380 - resource: File[/home/jenkins/.koji/katello-config] - resource_type: File - containment_path: - - Stage[main] - - Slave - - File[/home/jenkins/.koji/katello-config] - evaluation_time: 0.069970337 - tags: - - file - - class - - slave - time: '2017-06-28T17:28:27.748109219+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/.katello-ca.cert]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/.katello-ca.cert" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/init.pp" - line: 387 - resource: File[/home/jenkins/.katello-ca.cert] - resource_type: File - containment_path: - - Stage[main] - - Slave - - File[/home/jenkins/.katello-ca.cert] - evaluation_time: 0.06431136 - tags: - - file - - class - - slave - time: '2017-06-28T17:28:27.818390013+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/.katello.cert]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/.katello.cert" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/init.pp" - line: 395 - resource: File[/home/jenkins/.katello.cert] - resource_type: File - containment_path: - - Stage[main] - - Slave - - File[/home/jenkins/.katello.cert] - evaluation_time: 0.000606353 - tags: - - file - - class - - slave - time: '2017-06-28T17:28:27.883122597+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Exec[vagrant plugin install --plugin-version 0.1.6 vagrant-rackspace]: !ruby/object:Puppet::Resource::Status - title: vagrant plugin install --plugin-version 0.1.6 vagrant-rackspace - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/vagrant.pp" - line: 28 - resource: Exec[vagrant plugin install --plugin-version 0.1.6 vagrant-rackspace] - resource_type: Exec - containment_path: - - Stage[main] - - Slave::Vagrant - - Exec[vagrant plugin install --plugin-version 0.1.6 vagrant-rackspace] - evaluation_time: 0.848544348 - tags: - - exec - - class - - slave::vagrant - - slave - - vagrant - time: '2017-06-28T17:28:27.884141875+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Exec[vagrant box add dummy]: !ruby/object:Puppet::Resource::Status - title: vagrant box add dummy - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/vagrant.pp" - line: 36 - resource: Exec[vagrant box add dummy] - resource_type: Exec - containment_path: - - Stage[main] - - Slave::Vagrant - - Exec[vagrant box add dummy] - evaluation_time: 1.351175696 - tags: - - exec - - class - - slave::vagrant - - slave - - vagrant - time: '2017-06-28T17:28:28.733301354+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/.vagrant.d/Vagrantfile]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/.vagrant.d/Vagrantfile" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/vagrant.pp" - line: 44 - resource: File[/home/jenkins/.vagrant.d/Vagrantfile] - resource_type: File - containment_path: - - Stage[main] - - Slave::Vagrant - - File[/home/jenkins/.vagrant.d/Vagrantfile] - evaluation_time: 0.001112039 - tags: - - file - - class - - slave::vagrant - - slave - - vagrant - time: '2017-06-28T17:28:30.085256780+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/cache/test_pull_request_bastion_not_mergable]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/cache/test_pull_request_bastion_not_mergable" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 2 - resource: File[/home/jenkins/pr_tests/cache/test_pull_request_bastion_not_mergable] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[bastion] - - File[/home/jenkins/pr_tests/cache/test_pull_request_bastion_not_mergable] - evaluation_time: 0.000667932 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - bastion - - class - time: '2017-06-28T17:28:30.086664096+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/test_pull_requests_bastion.json]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/test_pull_requests_bastion.json" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 17 - resource: File[/home/jenkins/pr_tests/test_pull_requests_bastion.json] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[bastion] - - File[/home/jenkins/pr_tests/test_pull_requests_bastion.json] - evaluation_time: 0.000774719 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - bastion - - class - time: '2017-06-28T17:28:30.087773201+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/cache/test_pull_request_foreman_ansible_not_mergable]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/cache/test_pull_request_foreman_ansible_not_mergable" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 2 - resource: File[/home/jenkins/pr_tests/cache/test_pull_request_foreman_ansible_not_mergable] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[foreman_ansible] - - File[/home/jenkins/pr_tests/cache/test_pull_request_foreman_ansible_not_mergable] - evaluation_time: 0.000535873 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - foreman_ansible - - class - time: '2017-06-28T17:28:30.089268294+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/test_pull_requests_foreman_ansible.json]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/test_pull_requests_foreman_ansible.json" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 17 - resource: File[/home/jenkins/pr_tests/test_pull_requests_foreman_ansible.json] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[foreman_ansible] - - File[/home/jenkins/pr_tests/test_pull_requests_foreman_ansible.json] - evaluation_time: 0.000676451 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - foreman_ansible - - class - time: '2017-06-28T17:28:30.090094410+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/cache/test_pull_request_foreman_bootdisk_not_mergable]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/cache/test_pull_request_foreman_bootdisk_not_mergable" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 2 - resource: File[/home/jenkins/pr_tests/cache/test_pull_request_foreman_bootdisk_not_mergable] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[foreman_bootdisk] - - File[/home/jenkins/pr_tests/cache/test_pull_request_foreman_bootdisk_not_mergable] - evaluation_time: 0.000547712 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - foreman_bootdisk - - class - time: '2017-06-28T17:28:30.091480949+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/test_pull_requests_foreman_bootdisk.json]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/test_pull_requests_foreman_bootdisk.json" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 17 - resource: File[/home/jenkins/pr_tests/test_pull_requests_foreman_bootdisk.json] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[foreman_bootdisk] - - File[/home/jenkins/pr_tests/test_pull_requests_foreman_bootdisk.json] - evaluation_time: 0.000624783 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - foreman_bootdisk - - class - time: '2017-06-28T17:28:30.092410715+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/cache/test_pull_request_foreman_digitalocean_not_mergable]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/cache/test_pull_request_foreman_digitalocean_not_mergable" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 2 - resource: File[/home/jenkins/pr_tests/cache/test_pull_request_foreman_digitalocean_not_mergable] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[foreman_digitalocean] - - File[/home/jenkins/pr_tests/cache/test_pull_request_foreman_digitalocean_not_mergable] - evaluation_time: 0.000536721 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - foreman_digitalocean - - class - time: '2017-06-28T17:28:30.093638400+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/test_pull_requests_foreman_digitalocean.json]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/test_pull_requests_foreman_digitalocean.json" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 17 - resource: File[/home/jenkins/pr_tests/test_pull_requests_foreman_digitalocean.json] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[foreman_digitalocean] - - File[/home/jenkins/pr_tests/test_pull_requests_foreman_digitalocean.json] - evaluation_time: 0.000633012 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - foreman_digitalocean - - class - time: '2017-06-28T17:28:30.094483288+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/cache/test_pull_request_foreman_discovery_not_mergable]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/cache/test_pull_request_foreman_discovery_not_mergable" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 2 - resource: File[/home/jenkins/pr_tests/cache/test_pull_request_foreman_discovery_not_mergable] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[foreman_discovery] - - File[/home/jenkins/pr_tests/cache/test_pull_request_foreman_discovery_not_mergable] - evaluation_time: 0.000531461 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - foreman_discovery - - class - time: '2017-06-28T17:28:30.095761353+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/test_pull_requests_foreman_discovery.json]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/test_pull_requests_foreman_discovery.json" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 17 - resource: File[/home/jenkins/pr_tests/test_pull_requests_foreman_discovery.json] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[foreman_discovery] - - File[/home/jenkins/pr_tests/test_pull_requests_foreman_discovery.json] - evaluation_time: 0.000644385 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - foreman_discovery - - class - time: '2017-06-28T17:28:30.096640415+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/cache/test_pull_request_foreman_docker_not_mergable]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/cache/test_pull_request_foreman_docker_not_mergable" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 2 - resource: File[/home/jenkins/pr_tests/cache/test_pull_request_foreman_docker_not_mergable] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[foreman_docker] - - File[/home/jenkins/pr_tests/cache/test_pull_request_foreman_docker_not_mergable] - evaluation_time: 0.000529828 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - foreman_docker - - class - time: '2017-06-28T17:28:30.097907414+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/test_pull_requests_foreman_docker.json]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/test_pull_requests_foreman_docker.json" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 17 - resource: File[/home/jenkins/pr_tests/test_pull_requests_foreman_docker.json] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[foreman_docker] - - File[/home/jenkins/pr_tests/test_pull_requests_foreman_docker.json] - evaluation_time: 0.000646519 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - foreman_docker - - class - time: '2017-06-28T17:28:30.098758846+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/cache/test_pull_request_foreman_expire_hosts_not_mergable]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/cache/test_pull_request_foreman_expire_hosts_not_mergable" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 2 - resource: File[/home/jenkins/pr_tests/cache/test_pull_request_foreman_expire_hosts_not_mergable] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[foreman_expire_hosts] - - File[/home/jenkins/pr_tests/cache/test_pull_request_foreman_expire_hosts_not_mergable] - evaluation_time: 0.000453996 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - foreman_expire_hosts - - class - time: '2017-06-28T17:28:30.100119857+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/test_pull_requests_foreman_expire_hosts.json]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/test_pull_requests_foreman_expire_hosts.json" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 17 - resource: File[/home/jenkins/pr_tests/test_pull_requests_foreman_expire_hosts.json] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[foreman_expire_hosts] - - File[/home/jenkins/pr_tests/test_pull_requests_foreman_expire_hosts.json] - evaluation_time: 0.000605423 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - foreman_expire_hosts - - class - time: '2017-06-28T17:28:30.100913180+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/cache/test_pull_request_foreman_host_extra_validator_not_mergable]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/cache/test_pull_request_foreman_host_extra_validator_not_mergable" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 2 - resource: File[/home/jenkins/pr_tests/cache/test_pull_request_foreman_host_extra_validator_not_mergable] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[foreman_host_extra_validator] - - File[/home/jenkins/pr_tests/cache/test_pull_request_foreman_host_extra_validator_not_mergable] - evaluation_time: 0.000530476 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - foreman_host_extra_validator - - class - time: '2017-06-28T17:28:30.102158756+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/test_pull_requests_foreman_host_extra_validator.json]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/test_pull_requests_foreman_host_extra_validator.json" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 17 - resource: File[/home/jenkins/pr_tests/test_pull_requests_foreman_host_extra_validator.json] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[foreman_host_extra_validator] - - File[/home/jenkins/pr_tests/test_pull_requests_foreman_host_extra_validator.json] - evaluation_time: 0.000617314 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - foreman_host_extra_validator - - class - time: '2017-06-28T17:28:30.102969228+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/cache/test_pull_request_foreman_host_rundeck_not_mergable]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/cache/test_pull_request_foreman_host_rundeck_not_mergable" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 2 - resource: File[/home/jenkins/pr_tests/cache/test_pull_request_foreman_host_rundeck_not_mergable] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[foreman_host_rundeck] - - File[/home/jenkins/pr_tests/cache/test_pull_request_foreman_host_rundeck_not_mergable] - evaluation_time: 0.000480688 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - foreman_host_rundeck - - class - time: '2017-06-28T17:28:30.104238150+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/test_pull_requests_foreman_host_rundeck.json]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/test_pull_requests_foreman_host_rundeck.json" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 17 - resource: File[/home/jenkins/pr_tests/test_pull_requests_foreman_host_rundeck.json] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[foreman_host_rundeck] - - File[/home/jenkins/pr_tests/test_pull_requests_foreman_host_rundeck.json] - evaluation_time: 0.000618312 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - foreman_host_rundeck - - class - time: '2017-06-28T17:28:30.105002882+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/cache/test_pull_request_foreman_monitoring_not_mergable]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/cache/test_pull_request_foreman_monitoring_not_mergable" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 2 - resource: File[/home/jenkins/pr_tests/cache/test_pull_request_foreman_monitoring_not_mergable] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[foreman_monitoring] - - File[/home/jenkins/pr_tests/cache/test_pull_request_foreman_monitoring_not_mergable] - evaluation_time: 0.000493574 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - foreman_monitoring - - class - time: '2017-06-28T17:28:30.106274626+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/test_pull_requests_foreman_monitoring.json]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/test_pull_requests_foreman_monitoring.json" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 17 - resource: File[/home/jenkins/pr_tests/test_pull_requests_foreman_monitoring.json] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[foreman_monitoring] - - File[/home/jenkins/pr_tests/test_pull_requests_foreman_monitoring.json] - evaluation_time: 0.000625641 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - foreman_monitoring - - class - time: '2017-06-28T17:28:30.107086993+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/cache/test_pull_request_foreman_omaha_not_mergable]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/cache/test_pull_request_foreman_omaha_not_mergable" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 2 - resource: File[/home/jenkins/pr_tests/cache/test_pull_request_foreman_omaha_not_mergable] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[foreman_omaha] - - File[/home/jenkins/pr_tests/cache/test_pull_request_foreman_omaha_not_mergable] - evaluation_time: 0.000494853 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - foreman_omaha - - class - time: '2017-06-28T17:28:30.108300448+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/test_pull_requests_foreman_omaha.json]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/test_pull_requests_foreman_omaha.json" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 17 - resource: File[/home/jenkins/pr_tests/test_pull_requests_foreman_omaha.json] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[foreman_omaha] - - File[/home/jenkins/pr_tests/test_pull_requests_foreman_omaha.json] - evaluation_time: 0.000596915 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - foreman_omaha - - class - time: '2017-06-28T17:28:30.109100394+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/cache/test_pull_request_foreman_openscap_not_mergable]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/cache/test_pull_request_foreman_openscap_not_mergable" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 2 - resource: File[/home/jenkins/pr_tests/cache/test_pull_request_foreman_openscap_not_mergable] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[foreman_openscap] - - File[/home/jenkins/pr_tests/cache/test_pull_request_foreman_openscap_not_mergable] - evaluation_time: 0.000426919 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - foreman_openscap - - class - time: '2017-06-28T17:28:30.110293066+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/test_pull_requests_foreman_openscap.json]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/test_pull_requests_foreman_openscap.json" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 17 - resource: File[/home/jenkins/pr_tests/test_pull_requests_foreman_openscap.json] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[foreman_openscap] - - File[/home/jenkins/pr_tests/test_pull_requests_foreman_openscap.json] - evaluation_time: 0.000555942 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - foreman_openscap - - class - time: '2017-06-28T17:28:30.111038215+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/cache/test_pull_request_foreman_packaging_not_mergable]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/cache/test_pull_request_foreman_packaging_not_mergable" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 2 - resource: File[/home/jenkins/pr_tests/cache/test_pull_request_foreman_packaging_not_mergable] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[foreman_packaging] - - File[/home/jenkins/pr_tests/cache/test_pull_request_foreman_packaging_not_mergable] - evaluation_time: 0.000486579 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - foreman_packaging - - class - time: '2017-06-28T17:28:30.112221059+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/test_pull_requests_foreman_packaging.json]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/test_pull_requests_foreman_packaging.json" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 17 - resource: File[/home/jenkins/pr_tests/test_pull_requests_foreman_packaging.json] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[foreman_packaging] - - File[/home/jenkins/pr_tests/test_pull_requests_foreman_packaging.json] - evaluation_time: 0.000666014 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - foreman_packaging - - class - time: '2017-06-28T17:28:30.113024942+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/cache/test_pull_request_foreman_pipeline_not_mergable]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/cache/test_pull_request_foreman_pipeline_not_mergable" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 2 - resource: File[/home/jenkins/pr_tests/cache/test_pull_request_foreman_pipeline_not_mergable] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[foreman_pipeline] - - File[/home/jenkins/pr_tests/cache/test_pull_request_foreman_pipeline_not_mergable] - evaluation_time: 0.000476904 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - foreman_pipeline - - class - time: '2017-06-28T17:28:30.114264296+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/test_pull_requests_foreman_pipeline.json]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/test_pull_requests_foreman_pipeline.json" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 17 - resource: File[/home/jenkins/pr_tests/test_pull_requests_foreman_pipeline.json] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[foreman_pipeline] - - File[/home/jenkins/pr_tests/test_pull_requests_foreman_pipeline.json] - evaluation_time: 0.000572477 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - foreman_pipeline - - class - time: '2017-06-28T17:28:30.115083354+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/cache/test_pull_request_foreman_remote_execution_not_mergable]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/cache/test_pull_request_foreman_remote_execution_not_mergable" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 2 - resource: File[/home/jenkins/pr_tests/cache/test_pull_request_foreman_remote_execution_not_mergable] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[foreman_remote_execution] - - File[/home/jenkins/pr_tests/cache/test_pull_request_foreman_remote_execution_not_mergable] - evaluation_time: 0.00045992 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - foreman_remote_execution - - class - time: '2017-06-28T17:28:30.116263342+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/test_pull_requests_foreman_remote_execution.json]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/test_pull_requests_foreman_remote_execution.json" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 17 - resource: File[/home/jenkins/pr_tests/test_pull_requests_foreman_remote_execution.json] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[foreman_remote_execution] - - File[/home/jenkins/pr_tests/test_pull_requests_foreman_remote_execution.json] - evaluation_time: 0.000579711 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - foreman_remote_execution - - class - time: '2017-06-28T17:28:30.117040115+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/cache/test_pull_request_foreman_salt_not_mergable]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/cache/test_pull_request_foreman_salt_not_mergable" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 2 - resource: File[/home/jenkins/pr_tests/cache/test_pull_request_foreman_salt_not_mergable] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[foreman_salt] - - File[/home/jenkins/pr_tests/cache/test_pull_request_foreman_salt_not_mergable] - evaluation_time: 0.000478759 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - foreman_salt - - class - time: '2017-06-28T17:28:30.118254318+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/test_pull_requests_foreman_salt.json]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/test_pull_requests_foreman_salt.json" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 17 - resource: File[/home/jenkins/pr_tests/test_pull_requests_foreman_salt.json] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[foreman_salt] - - File[/home/jenkins/pr_tests/test_pull_requests_foreman_salt.json] - evaluation_time: 0.000705547 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - foreman_salt - - class - time: '2017-06-28T17:28:30.119028462+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/cache/test_pull_request_foreman_setup_not_mergable]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/cache/test_pull_request_foreman_setup_not_mergable" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 2 - resource: File[/home/jenkins/pr_tests/cache/test_pull_request_foreman_setup_not_mergable] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[foreman_setup] - - File[/home/jenkins/pr_tests/cache/test_pull_request_foreman_setup_not_mergable] - evaluation_time: 0.000598503 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - foreman_setup - - class - time: '2017-06-28T17:28:30.120472935+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/test_pull_requests_foreman_setup.json]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/test_pull_requests_foreman_setup.json" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 17 - resource: File[/home/jenkins/pr_tests/test_pull_requests_foreman_setup.json] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[foreman_setup] - - File[/home/jenkins/pr_tests/test_pull_requests_foreman_setup.json] - evaluation_time: 0.000586445 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - foreman_setup - - class - time: '2017-06-28T17:28:30.121411317+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/cache/test_pull_request_foreman_tasks_not_mergable]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/cache/test_pull_request_foreman_tasks_not_mergable" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 2 - resource: File[/home/jenkins/pr_tests/cache/test_pull_request_foreman_tasks_not_mergable] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[foreman_tasks] - - File[/home/jenkins/pr_tests/cache/test_pull_request_foreman_tasks_not_mergable] - evaluation_time: 0.001297023 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - foreman_tasks - - class - time: '2017-06-28T17:28:30.122583991+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/test_pull_requests_foreman_tasks.json]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/test_pull_requests_foreman_tasks.json" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 17 - resource: File[/home/jenkins/pr_tests/test_pull_requests_foreman_tasks.json] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[foreman_tasks] - - File[/home/jenkins/pr_tests/test_pull_requests_foreman_tasks.json] - evaluation_time: 0.000560554 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - foreman_tasks - - class - time: '2017-06-28T17:28:30.124186270+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/cache/test_pull_request_foreman_templates_not_mergable]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/cache/test_pull_request_foreman_templates_not_mergable" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 2 - resource: File[/home/jenkins/pr_tests/cache/test_pull_request_foreman_templates_not_mergable] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[foreman_templates] - - File[/home/jenkins/pr_tests/cache/test_pull_request_foreman_templates_not_mergable] - evaluation_time: 0.000584175 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - foreman_templates - - class - time: '2017-06-28T17:28:30.125463296+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/test_pull_requests_foreman_templates.json]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/test_pull_requests_foreman_templates.json" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 17 - resource: File[/home/jenkins/pr_tests/test_pull_requests_foreman_templates.json] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[foreman_templates] - - File[/home/jenkins/pr_tests/test_pull_requests_foreman_templates.json] - evaluation_time: 0.000634416 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - foreman_templates - - class - time: '2017-06-28T17:28:30.126335715+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/cache/test_pull_request_hammer_cli_not_mergable]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/cache/test_pull_request_hammer_cli_not_mergable" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 2 - resource: File[/home/jenkins/pr_tests/cache/test_pull_request_hammer_cli_not_mergable] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[hammer_cli] - - File[/home/jenkins/pr_tests/cache/test_pull_request_hammer_cli_not_mergable] - evaluation_time: 0.000517054 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - hammer_cli - - class - time: '2017-06-28T17:28:30.127546982+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/test_pull_requests_hammer_cli.json]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/test_pull_requests_hammer_cli.json" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 17 - resource: File[/home/jenkins/pr_tests/test_pull_requests_hammer_cli.json] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[hammer_cli] - - File[/home/jenkins/pr_tests/test_pull_requests_hammer_cli.json] - evaluation_time: 0.000617046 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - hammer_cli - - class - time: '2017-06-28T17:28:30.128352205+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/cache/test_pull_request_hammer_cli_foreman_not_mergable]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/cache/test_pull_request_hammer_cli_foreman_not_mergable" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 2 - resource: File[/home/jenkins/pr_tests/cache/test_pull_request_hammer_cli_foreman_not_mergable] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[hammer_cli_foreman] - - File[/home/jenkins/pr_tests/cache/test_pull_request_hammer_cli_foreman_not_mergable] - evaluation_time: 0.000632486 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - hammer_cli_foreman - - class - time: '2017-06-28T17:28:30.129565963+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/test_pull_requests_hammer_cli_foreman.json]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/test_pull_requests_hammer_cli_foreman.json" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 17 - resource: File[/home/jenkins/pr_tests/test_pull_requests_hammer_cli_foreman.json] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[hammer_cli_foreman] - - File[/home/jenkins/pr_tests/test_pull_requests_hammer_cli_foreman.json] - evaluation_time: 0.000573371 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - hammer_cli_foreman - - class - time: '2017-06-28T17:28:30.130535798+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/cache/test_pull_request_hammer_cli_foreman_discovery_not_mergable]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/cache/test_pull_request_hammer_cli_foreman_discovery_not_mergable" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 2 - resource: File[/home/jenkins/pr_tests/cache/test_pull_request_hammer_cli_foreman_discovery_not_mergable] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[hammer_cli_foreman_discovery] - - File[/home/jenkins/pr_tests/cache/test_pull_request_hammer_cli_foreman_discovery_not_mergable] - evaluation_time: 0.000466132 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - hammer_cli_foreman_discovery - - class - time: '2017-06-28T17:28:30.131674625+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/test_pull_requests_hammer_cli_foreman_discovery.json]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/test_pull_requests_hammer_cli_foreman_discovery.json" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 17 - resource: File[/home/jenkins/pr_tests/test_pull_requests_hammer_cli_foreman_discovery.json] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[hammer_cli_foreman_discovery] - - File[/home/jenkins/pr_tests/test_pull_requests_hammer_cli_foreman_discovery.json] - evaluation_time: 0.000607939 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - hammer_cli_foreman_discovery - - class - time: '2017-06-28T17:28:30.132427190+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/cache/test_pull_request_kafo_not_mergable]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/cache/test_pull_request_kafo_not_mergable" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 2 - resource: File[/home/jenkins/pr_tests/cache/test_pull_request_kafo_not_mergable] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[kafo] - - File[/home/jenkins/pr_tests/cache/test_pull_request_kafo_not_mergable] - evaluation_time: 0.000472565 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - kafo - - class - time: '2017-06-28T17:28:30.133630340+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/test_pull_requests_kafo.json]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/test_pull_requests_kafo.json" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 17 - resource: File[/home/jenkins/pr_tests/test_pull_requests_kafo.json] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[kafo] - - File[/home/jenkins/pr_tests/test_pull_requests_kafo.json] - evaluation_time: 0.000732095 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - kafo - - class - time: '2017-06-28T17:28:30.134387693+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/cache/test_pull_request_kafo_parsers_not_mergable]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/cache/test_pull_request_kafo_parsers_not_mergable" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 2 - resource: File[/home/jenkins/pr_tests/cache/test_pull_request_kafo_parsers_not_mergable] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[kafo_parsers] - - File[/home/jenkins/pr_tests/cache/test_pull_request_kafo_parsers_not_mergable] - evaluation_time: 0.000465137 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - kafo_parsers - - class - time: '2017-06-28T17:28:30.135912575+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/test_pull_requests_kafo_parsers.json]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/test_pull_requests_kafo_parsers.json" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 17 - resource: File[/home/jenkins/pr_tests/test_pull_requests_kafo_parsers.json] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[kafo_parsers] - - File[/home/jenkins/pr_tests/test_pull_requests_kafo_parsers.json] - evaluation_time: 0.000622265 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - kafo_parsers - - class - time: '2017-06-28T17:28:30.136663517+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/cache/test_pull_request_katello_not_mergable]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/cache/test_pull_request_katello_not_mergable" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 2 - resource: File[/home/jenkins/pr_tests/cache/test_pull_request_katello_not_mergable] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[katello] - - File[/home/jenkins/pr_tests/cache/test_pull_request_katello_not_mergable] - evaluation_time: 0.000574406 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - katello - - class - time: '2017-06-28T17:28:30.138117905+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/test_pull_requests_katello.json]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/test_pull_requests_katello.json" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 17 - resource: File[/home/jenkins/pr_tests/test_pull_requests_katello.json] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[katello] - - File[/home/jenkins/pr_tests/test_pull_requests_katello.json] - evaluation_time: 0.000654406 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - katello - - class - time: '2017-06-28T17:28:30.139030514+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/cache/test_pull_request_katello_packaging_not_mergable]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/cache/test_pull_request_katello_packaging_not_mergable" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 2 - resource: File[/home/jenkins/pr_tests/cache/test_pull_request_katello_packaging_not_mergable] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[katello_packaging] - - File[/home/jenkins/pr_tests/cache/test_pull_request_katello_packaging_not_mergable] - evaluation_time: 0.00049474 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - katello_packaging - - class - time: '2017-06-28T17:28:30.140284018+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/test_pull_requests_katello_packaging.json]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/test_pull_requests_katello_packaging.json" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 17 - resource: File[/home/jenkins/pr_tests/test_pull_requests_katello_packaging.json] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[katello_packaging] - - File[/home/jenkins/pr_tests/test_pull_requests_katello_packaging.json] - evaluation_time: 0.000649422 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - katello_packaging - - class - time: '2017-06-28T17:28:30.141072461+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/cache/test_pull_request_puppetdb_foreman_not_mergable]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/cache/test_pull_request_puppetdb_foreman_not_mergable" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 2 - resource: File[/home/jenkins/pr_tests/cache/test_pull_request_puppetdb_foreman_not_mergable] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[puppetdb_foreman] - - File[/home/jenkins/pr_tests/cache/test_pull_request_puppetdb_foreman_not_mergable] - evaluation_time: 0.000745275 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - puppetdb_foreman - - class - time: '2017-06-28T17:28:30.142625878+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/test_pull_requests_puppetdb_foreman.json]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/test_pull_requests_puppetdb_foreman.json" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 17 - resource: File[/home/jenkins/pr_tests/test_pull_requests_puppetdb_foreman.json] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[puppetdb_foreman] - - File[/home/jenkins/pr_tests/test_pull_requests_puppetdb_foreman.json] - evaluation_time: 0.000869351 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - puppetdb_foreman - - class - time: '2017-06-28T17:28:30.143812360+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/cache/test_pull_request_smart_proxy_not_mergable]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/cache/test_pull_request_smart_proxy_not_mergable" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 2 - resource: File[/home/jenkins/pr_tests/cache/test_pull_request_smart_proxy_not_mergable] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[smart_proxy] - - File[/home/jenkins/pr_tests/cache/test_pull_request_smart_proxy_not_mergable] - evaluation_time: 0.000577205 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - smart_proxy - - class - time: '2017-06-28T17:28:30.145587799+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/test_pull_requests_smart_proxy.json]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/test_pull_requests_smart_proxy.json" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 17 - resource: File[/home/jenkins/pr_tests/test_pull_requests_smart_proxy.json] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[smart_proxy] - - File[/home/jenkins/pr_tests/test_pull_requests_smart_proxy.json] - evaluation_time: 0.000602174 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - smart_proxy - - class - time: '2017-06-28T17:28:30.146468037+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/cache/test_pull_request_smart_proxy_abrt_not_mergable]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/cache/test_pull_request_smart_proxy_abrt_not_mergable" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 2 - resource: File[/home/jenkins/pr_tests/cache/test_pull_request_smart_proxy_abrt_not_mergable] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[smart_proxy_abrt] - - File[/home/jenkins/pr_tests/cache/test_pull_request_smart_proxy_abrt_not_mergable] - evaluation_time: 0.000543181 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - smart_proxy_abrt - - class - time: '2017-06-28T17:28:30.147649385+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/test_pull_requests_smart_proxy_abrt.json]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/test_pull_requests_smart_proxy_abrt.json" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 17 - resource: File[/home/jenkins/pr_tests/test_pull_requests_smart_proxy_abrt.json] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[smart_proxy_abrt] - - File[/home/jenkins/pr_tests/test_pull_requests_smart_proxy_abrt.json] - evaluation_time: 0.000686635 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - smart_proxy_abrt - - class - time: '2017-06-28T17:28:30.148470707+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/cache/test_pull_request_smart_proxy_discovery_not_mergable]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/cache/test_pull_request_smart_proxy_discovery_not_mergable" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 2 - resource: File[/home/jenkins/pr_tests/cache/test_pull_request_smart_proxy_discovery_not_mergable] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[smart_proxy_discovery] - - File[/home/jenkins/pr_tests/cache/test_pull_request_smart_proxy_discovery_not_mergable] - evaluation_time: 0.000695927 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - smart_proxy_discovery - - class - time: '2017-06-28T17:28:30.150084538+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/test_pull_requests_smart_proxy_discovery.json]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/test_pull_requests_smart_proxy_discovery.json" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 17 - resource: File[/home/jenkins/pr_tests/test_pull_requests_smart_proxy_discovery.json] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[smart_proxy_discovery] - - File[/home/jenkins/pr_tests/test_pull_requests_smart_proxy_discovery.json] - evaluation_time: 0.000969009 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - smart_proxy_discovery - - class - time: '2017-06-28T17:28:30.151253316+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/cache/test_pull_request_smart_proxy_dynflow_not_mergable]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/cache/test_pull_request_smart_proxy_dynflow_not_mergable" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 2 - resource: File[/home/jenkins/pr_tests/cache/test_pull_request_smart_proxy_dynflow_not_mergable] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[smart_proxy_dynflow] - - File[/home/jenkins/pr_tests/cache/test_pull_request_smart_proxy_dynflow_not_mergable] - evaluation_time: 0.000542819 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - smart_proxy_dynflow - - class - time: '2017-06-28T17:28:30.153137979+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/test_pull_requests_smart_proxy_dynflow.json]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/test_pull_requests_smart_proxy_dynflow.json" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 17 - resource: File[/home/jenkins/pr_tests/test_pull_requests_smart_proxy_dynflow.json] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[smart_proxy_dynflow] - - File[/home/jenkins/pr_tests/test_pull_requests_smart_proxy_dynflow.json] - evaluation_time: 0.00056631 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - smart_proxy_dynflow - - class - time: '2017-06-28T17:28:30.154005420+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/cache/test_pull_request_smart_proxy_monitoring_not_mergable]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/cache/test_pull_request_smart_proxy_monitoring_not_mergable" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 2 - resource: File[/home/jenkins/pr_tests/cache/test_pull_request_smart_proxy_monitoring_not_mergable] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[smart_proxy_monitoring] - - File[/home/jenkins/pr_tests/cache/test_pull_request_smart_proxy_monitoring_not_mergable] - evaluation_time: 0.000496372 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - smart_proxy_monitoring - - class - time: '2017-06-28T17:28:30.155173786+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/test_pull_requests_smart_proxy_monitoring.json]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/test_pull_requests_smart_proxy_monitoring.json" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 17 - resource: File[/home/jenkins/pr_tests/test_pull_requests_smart_proxy_monitoring.json] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[smart_proxy_monitoring] - - File[/home/jenkins/pr_tests/test_pull_requests_smart_proxy_monitoring.json] - evaluation_time: 0.000612216 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - smart_proxy_monitoring - - class - time: '2017-06-28T17:28:30.155970438+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/cache/test_pull_request_smart_proxy_omaha_not_mergable]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/cache/test_pull_request_smart_proxy_omaha_not_mergable" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 2 - resource: File[/home/jenkins/pr_tests/cache/test_pull_request_smart_proxy_omaha_not_mergable] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[smart_proxy_omaha] - - File[/home/jenkins/pr_tests/cache/test_pull_request_smart_proxy_omaha_not_mergable] - evaluation_time: 0.000758 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - smart_proxy_omaha - - class - time: '2017-06-28T17:28:30.157484070+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/test_pull_requests_smart_proxy_omaha.json]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/test_pull_requests_smart_proxy_omaha.json" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 17 - resource: File[/home/jenkins/pr_tests/test_pull_requests_smart_proxy_omaha.json] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[smart_proxy_omaha] - - File[/home/jenkins/pr_tests/test_pull_requests_smart_proxy_omaha.json] - evaluation_time: 0.000741734 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - smart_proxy_omaha - - class - time: '2017-06-28T17:28:30.158646955+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/cache/test_pull_request_smart_proxy_openscap_not_mergable]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/cache/test_pull_request_smart_proxy_openscap_not_mergable" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 2 - resource: File[/home/jenkins/pr_tests/cache/test_pull_request_smart_proxy_openscap_not_mergable] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[smart_proxy_openscap] - - File[/home/jenkins/pr_tests/cache/test_pull_request_smart_proxy_openscap_not_mergable] - evaluation_time: 0.000542901 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - smart_proxy_openscap - - class - time: '2017-06-28T17:28:30.160118879+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/test_pull_requests_smart_proxy_openscap.json]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/test_pull_requests_smart_proxy_openscap.json" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 17 - resource: File[/home/jenkins/pr_tests/test_pull_requests_smart_proxy_openscap.json] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[smart_proxy_openscap] - - File[/home/jenkins/pr_tests/test_pull_requests_smart_proxy_openscap.json] - evaluation_time: 0.000601604 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - smart_proxy_openscap - - class - time: '2017-06-28T17:28:30.160967298+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/cache/test_pull_request_smart_proxy_pulp_not_mergable]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/cache/test_pull_request_smart_proxy_pulp_not_mergable" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 2 - resource: File[/home/jenkins/pr_tests/cache/test_pull_request_smart_proxy_pulp_not_mergable] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[smart_proxy_pulp] - - File[/home/jenkins/pr_tests/cache/test_pull_request_smart_proxy_pulp_not_mergable] - evaluation_time: 0.000530289 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - smart_proxy_pulp - - class - time: '2017-06-28T17:28:30.162236240+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/test_pull_requests_smart_proxy_pulp.json]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/test_pull_requests_smart_proxy_pulp.json" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 17 - resource: File[/home/jenkins/pr_tests/test_pull_requests_smart_proxy_pulp.json] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[smart_proxy_pulp] - - File[/home/jenkins/pr_tests/test_pull_requests_smart_proxy_pulp.json] - evaluation_time: 0.000892364 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - smart_proxy_pulp - - class - time: '2017-06-28T17:28:30.163127122+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/cache/test_pull_request_smart_proxy_remote_execution_ssh_not_mergable]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/cache/test_pull_request_smart_proxy_remote_execution_ssh_not_mergable" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 2 - resource: File[/home/jenkins/pr_tests/cache/test_pull_request_smart_proxy_remote_execution_ssh_not_mergable] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[smart_proxy_remote_execution_ssh] - - File[/home/jenkins/pr_tests/cache/test_pull_request_smart_proxy_remote_execution_ssh_not_mergable] - evaluation_time: 0.00063529 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - smart_proxy_remote_execution_ssh - - class - time: '2017-06-28T17:28:30.164816251+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/pr_tests/test_pull_requests_smart_proxy_remote_execution_ssh.json]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/pr_tests/test_pull_requests_smart_proxy_remote_execution_ssh.json" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/pr_test_config.pp" - line: 17 - resource: File[/home/jenkins/pr_tests/test_pull_requests_smart_proxy_remote_execution_ssh.json] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Pr_test_config[smart_proxy_remote_execution_ssh] - - File[/home/jenkins/pr_tests/test_pull_requests_smart_proxy_remote_execution_ssh.json] - evaluation_time: 0.000674545 - tags: - - file - - slave::pr_test_config - - slave - - pr_test_config - - smart_proxy_remote_execution_ssh - - class - time: '2017-06-28T17:28:30.165820807+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/mysql.db.yaml]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/mysql.db.yaml" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/db_config.pp" - line: 7 - resource: File[/home/jenkins/mysql.db.yaml] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Db_config[mysql] - - File[/home/jenkins/mysql.db.yaml] - evaluation_time: 0.534322046 - tags: - - file - - slave::db_config - - slave - - db_config - - mysql - - class - time: '2017-06-28T17:28:30.167096388+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/sqlite3.db.yaml]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/sqlite3.db.yaml" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/db_config.pp" - line: 7 - resource: File[/home/jenkins/sqlite3.db.yaml] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Db_config[sqlite3] - - File[/home/jenkins/sqlite3.db.yaml] - evaluation_time: 0.072228063 - tags: - - file - - slave::db_config - - slave - - db_config - - sqlite3 - - class - time: '2017-06-28T17:28:30.702607386+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/postgresql.db.yaml]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/postgresql.db.yaml" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/db_config.pp" - line: 7 - resource: File[/home/jenkins/postgresql.db.yaml] - resource_type: File - containment_path: - - Stage[main] - - Slave - - Slave::Db_config[postgresql] - - File[/home/jenkins/postgresql.db.yaml] - evaluation_time: 0.065584037 - tags: - - file - - slave::db_config - - slave - - db_config - - postgresql - - class - time: '2017-06-28T17:28:30.775655711+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/.ssh]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/.ssh" - file: "/etc/puppetlabs/code/environments/production/modules/users/manifests/account.pp" - line: 23 - resource: File[/home/jenkins/.ssh] - resource_type: File - containment_path: - - Stage[main] - - Users::Slave - - Users::Account[jenkins] - - File[/home/jenkins/.ssh] - evaluation_time: 0.000625414 - tags: - - file - - users::account - - users - - account - - jenkins - - class - - users::slave - - slave - time: '2017-06-28T17:28:30.842562972+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/.ssh/id_rsa_rackspace]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/.ssh/id_rsa_rackspace" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/vagrant.pp" - line: 56 - resource: File[/home/jenkins/.ssh/id_rsa_rackspace] - resource_type: File - containment_path: - - Stage[main] - - Slave::Vagrant - - File[/home/jenkins/.ssh/id_rsa_rackspace] - evaluation_time: 0.00048272 - tags: - - file - - class - - slave::vagrant - - slave - - vagrant - time: '2017-06-28T17:28:30.843524851+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/.ssh/id_rsa_rackspace.pub]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/.ssh/id_rsa_rackspace.pub" - file: "/etc/puppetlabs/code/environments/production/modules/slave/manifests/vagrant.pp" - line: 60 - resource: File[/home/jenkins/.ssh/id_rsa_rackspace.pub] - resource_type: File - containment_path: - - Stage[main] - - Slave::Vagrant - - File[/home/jenkins/.ssh/id_rsa_rackspace.pub] - evaluation_time: 0.000454358 - tags: - - file - - class - - slave::vagrant - - slave - - vagrant - time: '2017-06-28T17:28:30.844266631+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/.ssh/config]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/.ssh/config" - file: "/etc/puppetlabs/code/environments/production/modules/users/manifests/slave.pp" - line: 8 - resource: File[/home/jenkins/.ssh/config] - resource_type: File - containment_path: - - Stage[main] - - Users::Slave - - File[/home/jenkins/.ssh/config] - evaluation_time: 0.000756911 - tags: - - file - - class - - users::slave - - users - - slave - time: '2017-06-28T17:28:30.845365386+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/home/jenkins/.ssh/authorized_keys]: !ruby/object:Puppet::Resource::Status - title: "/home/jenkins/.ssh/authorized_keys" - file: "/etc/puppetlabs/code/environments/production/modules/users/manifests/account.pp" - line: 30 - resource: File[/home/jenkins/.ssh/authorized_keys] - resource_type: File - containment_path: - - Stage[main] - - Users::Slave - - Users::Account[jenkins] - - File[/home/jenkins/.ssh/authorized_keys] - evaluation_time: 0.000698147 - tags: - - file - - users::account - - users - - account - - jenkins - - class - - users::slave - - slave - time: '2017-06-28T17:28:30.846430045+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Concat_fragment[pg_hba_rule_local access as postgres user]: !ruby/object:Puppet::Resource::Status - title: pg_hba_rule_local access as postgres user - file: "/etc/puppetlabs/code/environments/production/modules/concat/manifests/fragment.pp" - line: 30 - resource: Concat_fragment[pg_hba_rule_local access as postgres user] - resource_type: Concat_fragment - containment_path: - - Stage[main] - - Postgresql::Server::Config - - Postgresql::Server::Pg_hba_rule[local access as postgres user] - - Concat::Fragment[pg_hba_rule_local access as postgres user] - - Concat_fragment[pg_hba_rule_local access as postgres user] - evaluation_time: 0.000149278 - tags: - - concat_fragment - - _var_lib_pgsql_data_pg_hba.conf - - concat::fragment - - concat - - fragment - - postgresql::server::pg_hba_rule - - postgresql - - server - - pg_hba_rule - - class - - postgresql::server::config - - config - - postgresql::server - - slave::postgresql - - slave - time: '2017-06-28T17:28:30.857169502+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Concat_fragment[pg_hba_rule_local access to database with same name]: !ruby/object:Puppet::Resource::Status - title: pg_hba_rule_local access to database with same name - file: "/etc/puppetlabs/code/environments/production/modules/concat/manifests/fragment.pp" - line: 30 - resource: Concat_fragment[pg_hba_rule_local access to database with same name] - resource_type: Concat_fragment - containment_path: - - Stage[main] - - Postgresql::Server::Config - - Postgresql::Server::Pg_hba_rule[local access to database with same name] - - Concat::Fragment[pg_hba_rule_local access to database with same name] - - Concat_fragment[pg_hba_rule_local access to database with same name] - evaluation_time: 0.000118848 - tags: - - concat_fragment - - _var_lib_pgsql_data_pg_hba.conf - - concat::fragment - - concat - - fragment - - postgresql::server::pg_hba_rule - - postgresql - - server - - pg_hba_rule - - class - - postgresql::server::config - - config - - postgresql::server - - slave::postgresql - - slave - time: '2017-06-28T17:28:30.858219780+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Concat_fragment[pg_hba_rule_allow localhost TCP access to postgresql user]: !ruby/object:Puppet::Resource::Status - title: pg_hba_rule_allow localhost TCP access to postgresql user - file: "/etc/puppetlabs/code/environments/production/modules/concat/manifests/fragment.pp" - line: 30 - resource: Concat_fragment[pg_hba_rule_allow localhost TCP access to postgresql user] - resource_type: Concat_fragment - containment_path: - - Stage[main] - - Postgresql::Server::Config - - Postgresql::Server::Pg_hba_rule[allow localhost TCP access to postgresql user] - - Concat::Fragment[pg_hba_rule_allow localhost TCP access to postgresql user] - - Concat_fragment[pg_hba_rule_allow localhost TCP access to postgresql user] - evaluation_time: 0.000105847 - tags: - - concat_fragment - - _var_lib_pgsql_data_pg_hba.conf - - concat::fragment - - concat - - fragment - - postgresql::server::pg_hba_rule - - postgresql - - server - - pg_hba_rule - - class - - postgresql::server::config - - config - - postgresql::server - - slave::postgresql - - slave - time: '2017-06-28T17:28:30.859285907+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Concat_fragment[pg_hba_rule_deny access to postgresql user]: !ruby/object:Puppet::Resource::Status - title: pg_hba_rule_deny access to postgresql user - file: "/etc/puppetlabs/code/environments/production/modules/concat/manifests/fragment.pp" - line: 30 - resource: Concat_fragment[pg_hba_rule_deny access to postgresql user] - resource_type: Concat_fragment - containment_path: - - Stage[main] - - Postgresql::Server::Config - - Postgresql::Server::Pg_hba_rule[deny access to postgresql user] - - Concat::Fragment[pg_hba_rule_deny access to postgresql user] - - Concat_fragment[pg_hba_rule_deny access to postgresql user] - evaluation_time: 0.000125766 - tags: - - concat_fragment - - _var_lib_pgsql_data_pg_hba.conf - - concat::fragment - - concat - - fragment - - postgresql::server::pg_hba_rule - - postgresql - - server - - pg_hba_rule - - class - - postgresql::server::config - - config - - postgresql::server - - slave::postgresql - - slave - time: '2017-06-28T17:28:30.860316169+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Concat_fragment[pg_hba_rule_allow access to all users]: !ruby/object:Puppet::Resource::Status - title: pg_hba_rule_allow access to all users - file: "/etc/puppetlabs/code/environments/production/modules/concat/manifests/fragment.pp" - line: 30 - resource: Concat_fragment[pg_hba_rule_allow access to all users] - resource_type: Concat_fragment - containment_path: - - Stage[main] - - Postgresql::Server::Config - - Postgresql::Server::Pg_hba_rule[allow access to all users] - - Concat::Fragment[pg_hba_rule_allow access to all users] - - Concat_fragment[pg_hba_rule_allow access to all users] - evaluation_time: 9.6006e-05 - tags: - - concat_fragment - - _var_lib_pgsql_data_pg_hba.conf - - concat::fragment - - concat - - fragment - - postgresql::server::pg_hba_rule - - postgresql - - server - - pg_hba_rule - - class - - postgresql::server::config - - config - - postgresql::server - - slave::postgresql - - slave - time: '2017-06-28T17:28:30.861390094+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Concat_fragment[pg_hba_rule_allow access to ipv6 localhost]: !ruby/object:Puppet::Resource::Status - title: pg_hba_rule_allow access to ipv6 localhost - file: "/etc/puppetlabs/code/environments/production/modules/concat/manifests/fragment.pp" - line: 30 - resource: Concat_fragment[pg_hba_rule_allow access to ipv6 localhost] - resource_type: Concat_fragment - containment_path: - - Stage[main] - - Postgresql::Server::Config - - Postgresql::Server::Pg_hba_rule[allow access to ipv6 localhost] - - Concat::Fragment[pg_hba_rule_allow access to ipv6 localhost] - - Concat_fragment[pg_hba_rule_allow access to ipv6 localhost] - evaluation_time: 9.6079e-05 - tags: - - concat_fragment - - _var_lib_pgsql_data_pg_hba.conf - - concat::fragment - - concat - - fragment - - postgresql::server::pg_hba_rule - - postgresql - - server - - pg_hba_rule - - class - - postgresql::server::config - - config - - postgresql::server - - slave::postgresql - - slave - time: '2017-06-28T17:28:30.862371495+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Anchor[postgresql::server::service::begin]: !ruby/object:Puppet::Resource::Status - title: postgresql::server::service::begin - file: "/etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/service.pp" - line: 14 - resource: Anchor[postgresql::server::service::begin] - resource_type: Anchor - containment_path: - - Stage[main] - - Postgresql::Server::Service - - Anchor[postgresql::server::service::begin] - evaluation_time: 0.000138353 - tags: - - anchor - - postgresql::server::service::begin - - postgresql - - server - - service - - begin - - class - - postgresql::server::service - - postgresql::server - - slave::postgresql - - slave - time: '2017-06-28T17:28:30.864061113+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Service[postgresqld]: !ruby/object:Puppet::Resource::Status - title: postgresqld - file: "/etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/service.pp" - line: 18 - resource: Service[postgresqld] - resource_type: Service - containment_path: - - Stage[main] - - Postgresql::Server::Service - - Service[postgresqld] - evaluation_time: 0.031729106 - tags: - - service - - postgresqld - - class - - postgresql::server::service - - postgresql - - server - - postgresql::server - - slave::postgresql - - slave - time: '2017-06-28T17:28:30.864700909+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Postgresql_conn_validator[validate_service_is_running]: !ruby/object:Puppet::Resource::Status - title: validate_service_is_running - file: "/etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/service.pp" - line: 33 - resource: Postgresql_conn_validator[validate_service_is_running] - resource_type: Postgresql_conn_validator - containment_path: - - Stage[main] - - Postgresql::Server::Service - - Postgresql_conn_validator[validate_service_is_running] - evaluation_time: 0.01796124 - tags: - - postgresql_conn_validator - - validate_service_is_running - - class - - postgresql::server::service - - postgresql - - server - - service - - postgresql::server - - slave::postgresql - - slave - time: '2017-06-28T17:28:30.897142316+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Anchor[postgresql::server::service::end]: !ruby/object:Puppet::Resource::Status - title: postgresql::server::service::end - file: "/etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/service.pp" - line: 47 - resource: Anchor[postgresql::server::service::end] - resource_type: Anchor - containment_path: - - Stage[main] - - Postgresql::Server::Service - - Anchor[postgresql::server::service::end] - evaluation_time: 0.000214962 - tags: - - anchor - - postgresql::server::service::end - - postgresql - - server - - service - - end - - class - - postgresql::server::service - - postgresql::server - - slave::postgresql - - slave - time: '2017-06-28T17:28:30.915887066+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Exec[postgresql_reload]: !ruby/object:Puppet::Resource::Status - title: postgresql_reload - file: "/etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/reload.pp" - line: 7 - resource: Exec[postgresql_reload] - resource_type: Exec - containment_path: - - Stage[main] - - Postgresql::Server::Reload - - Exec[postgresql_reload] - evaluation_time: 0.000319069 - tags: - - exec - - postgresql_reload - - class - - postgresql::server::reload - - postgresql - - server - - reload - - postgresql::server - - slave::postgresql - - slave - time: '2017-06-28T17:28:30.917053158+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Anchor[postgresql::server::end]: !ruby/object:Puppet::Resource::Status - title: postgresql::server::end - file: "/etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server.pp" - line: 82 - resource: Anchor[postgresql::server::end] - resource_type: Anchor - containment_path: - - Stage[main] - - Postgresql::Server - - Anchor[postgresql::server::end] - evaluation_time: 0.00015169 - tags: - - anchor - - postgresql::server::end - - postgresql - - server - - end - - class - - postgresql::server - - slave::postgresql - - slave - time: '2017-06-28T17:28:30.918794535+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Postgresql_psql[CREATE ROLE foreman ENCRYPTED PASSWORD ****]: !ruby/object:Puppet::Resource::Status - title: CREATE ROLE foreman ENCRYPTED PASSWORD **** - file: "/etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/role.pp" - line: 69 - resource: Postgresql_psql[CREATE ROLE foreman ENCRYPTED PASSWORD ****] - resource_type: Postgresql_psql - containment_path: - - Stage[main] - - Slave::Postgresql - - Postgresql::Server::Role[foreman] - - Postgresql_psql[CREATE ROLE foreman ENCRYPTED PASSWORD ****] - evaluation_time: 0.020886518 - tags: - - postgresql_psql - - postgresql::server::role - - postgresql - - server - - role - - foreman - - class - - slave::postgresql - - slave - time: '2017-06-28T17:28:30.920331842+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Postgresql_psql[ALTER ROLE "foreman" SUPERUSER]: !ruby/object:Puppet::Resource::Status - title: ALTER ROLE "foreman" SUPERUSER - file: "/etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/role.pp" - line: 76 - resource: Postgresql_psql[ALTER ROLE "foreman" SUPERUSER] - resource_type: Postgresql_psql - containment_path: - - Stage[main] - - Slave::Postgresql - - Postgresql::Server::Role[foreman] - - Postgresql_psql[ALTER ROLE "foreman" SUPERUSER] - evaluation_time: 0.019797092 - tags: - - postgresql_psql - - postgresql::server::role - - postgresql - - server - - role - - foreman - - class - - slave::postgresql - - slave - time: '2017-06-28T17:28:30.942046896+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Postgresql_psql[ALTER ROLE "foreman" NOCREATEDB]: !ruby/object:Puppet::Resource::Status - title: ALTER ROLE "foreman" NOCREATEDB - file: "/etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/role.pp" - line: 80 - resource: Postgresql_psql[ALTER ROLE "foreman" NOCREATEDB] - resource_type: Postgresql_psql - containment_path: - - Stage[main] - - Slave::Postgresql - - Postgresql::Server::Role[foreman] - - Postgresql_psql[ALTER ROLE "foreman" NOCREATEDB] - evaluation_time: 0.019967617 - tags: - - postgresql_psql - - postgresql::server::role - - postgresql - - server - - role - - foreman - - class - - slave::postgresql - - slave - time: '2017-06-28T17:28:30.962768086+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Postgresql_psql[ALTER ROLE "foreman" NOCREATEROLE]: !ruby/object:Puppet::Resource::Status - title: ALTER ROLE "foreman" NOCREATEROLE - file: "/etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/role.pp" - line: 84 - resource: Postgresql_psql[ALTER ROLE "foreman" NOCREATEROLE] - resource_type: Postgresql_psql - containment_path: - - Stage[main] - - Slave::Postgresql - - Postgresql::Server::Role[foreman] - - Postgresql_psql[ALTER ROLE "foreman" NOCREATEROLE] - evaluation_time: 0.020472595 - tags: - - postgresql_psql - - postgresql::server::role - - postgresql - - server - - role - - foreman - - class - - slave::postgresql - - slave - time: '2017-06-28T17:28:30.983357337+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Postgresql_psql[ALTER ROLE "foreman" LOGIN]: !ruby/object:Puppet::Resource::Status - title: ALTER ROLE "foreman" LOGIN - file: "/etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/role.pp" - line: 88 - resource: Postgresql_psql[ALTER ROLE "foreman" LOGIN] - resource_type: Postgresql_psql - containment_path: - - Stage[main] - - Slave::Postgresql - - Postgresql::Server::Role[foreman] - - Postgresql_psql[ALTER ROLE "foreman" LOGIN] - evaluation_time: 0.021644369 - tags: - - postgresql_psql - - postgresql::server::role - - postgresql - - server - - role - - foreman - - class - - slave::postgresql - - slave - time: '2017-06-28T17:28:31.004543239+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Postgresql_psql[ALTER ROLE "foreman" INHERIT]: !ruby/object:Puppet::Resource::Status - title: ALTER ROLE "foreman" INHERIT - file: "/etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/role.pp" - line: 92 - resource: Postgresql_psql[ALTER ROLE "foreman" INHERIT] - resource_type: Postgresql_psql - containment_path: - - Stage[main] - - Slave::Postgresql - - Postgresql::Server::Role[foreman] - - Postgresql_psql[ALTER ROLE "foreman" INHERIT] - evaluation_time: 0.020025491 - tags: - - postgresql_psql - - postgresql::server::role - - postgresql - - server - - role - - foreman - - class - - slave::postgresql - - slave - time: '2017-06-28T17:28:31.026763690+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Postgresql_psql[ALTER ROLE "foreman" NOREPLICATION]: !ruby/object:Puppet::Resource::Status - title: ALTER ROLE "foreman" NOREPLICATION - file: "/etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/role.pp" - line: 98 - resource: Postgresql_psql[ALTER ROLE "foreman" NOREPLICATION] - resource_type: Postgresql_psql - containment_path: - - Stage[main] - - Slave::Postgresql - - Postgresql::Server::Role[foreman] - - Postgresql_psql[ALTER ROLE "foreman" NOREPLICATION] - evaluation_time: 0.019945434 - tags: - - postgresql_psql - - postgresql::server::role - - postgresql - - server - - role - - foreman - - class - - slave::postgresql - - slave - time: '2017-06-28T17:28:31.047531236+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Postgresql_psql[ALTER ROLE "foreman" CONNECTION LIMIT -1]: !ruby/object:Puppet::Resource::Status - title: ALTER ROLE "foreman" CONNECTION LIMIT -1 - file: "/etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/role.pp" - line: 108 - resource: Postgresql_psql[ALTER ROLE "foreman" CONNECTION LIMIT -1] - resource_type: Postgresql_psql - containment_path: - - Stage[main] - - Slave::Postgresql - - Postgresql::Server::Role[foreman] - - Postgresql_psql[ALTER ROLE "foreman" CONNECTION LIMIT -1] - evaluation_time: 0.020349101 - tags: - - postgresql_psql - - postgresql::server::role - - postgresql - - server - - role - - foreman - - class - - slave::postgresql - - slave - time: '2017-06-28T17:28:31.068175815+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Postgresql_psql[ALTER ROLE foreman ENCRYPTED PASSWORD ****]: !ruby/object:Puppet::Resource::Status - title: ALTER ROLE foreman ENCRYPTED PASSWORD **** - file: "/etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/role.pp" - line: 119 - resource: Postgresql_psql[ALTER ROLE foreman ENCRYPTED PASSWORD ****] - resource_type: Postgresql_psql - containment_path: - - Stage[main] - - Slave::Postgresql - - Postgresql::Server::Role[foreman] - - Postgresql_psql[ALTER ROLE foreman ENCRYPTED PASSWORD ****] - evaluation_time: 0.020738703 - tags: - - postgresql_psql - - postgresql::server::role - - postgresql - - server - - role - - foreman - - class - - slave::postgresql - - slave - time: '2017-06-28T17:28:31.089144792+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[10_sudo-puppet-gregsutcliffe]: !ruby/object:Puppet::Resource::Status - title: 10_sudo-puppet-gregsutcliffe - file: "/etc/puppetlabs/code/environments/production/modules/sudo/manifests/conf.pp" - line: 108 - resource: File[10_sudo-puppet-gregsutcliffe] - resource_type: File - containment_path: - - Stage[main] - - Users - - Users::Account[gregsutcliffe] - - Sudo::Conf[sudo-puppet-gregsutcliffe] - - File[10_sudo-puppet-gregsutcliffe] - evaluation_time: 0.001220099 - tags: - - file - - 10_sudo-puppet-gregsutcliffe - - sudo::conf - - sudo - - conf - - sudo-puppet-gregsutcliffe - - users::account - - users - - account - - gregsutcliffe - - class - time: '2017-06-28T17:28:31.111819308+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Exec[sudo-syntax-check for file /etc/sudoers.d/10_sudo-puppet-gregsutcliffe]: !ruby/object:Puppet::Resource::Status - title: sudo-syntax-check for file /etc/sudoers.d/10_sudo-puppet-gregsutcliffe - file: "/etc/puppetlabs/code/environments/production/modules/sudo/manifests/conf.pp" - line: 119 - resource: Exec[sudo-syntax-check for file /etc/sudoers.d/10_sudo-puppet-gregsutcliffe] - resource_type: Exec - containment_path: - - Stage[main] - - Users - - Users::Account[gregsutcliffe] - - Sudo::Conf[sudo-puppet-gregsutcliffe] - - Exec[sudo-syntax-check for file /etc/sudoers.d/10_sudo-puppet-gregsutcliffe] - evaluation_time: 0.000202559 - tags: - - exec - - sudo::conf - - sudo - - conf - - sudo-puppet-gregsutcliffe - - users::account - - users - - account - - gregsutcliffe - - class - time: '2017-06-28T17:28:31.113615798+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[10_sudo-puppet-ohadlevy]: !ruby/object:Puppet::Resource::Status - title: 10_sudo-puppet-ohadlevy - file: "/etc/puppetlabs/code/environments/production/modules/sudo/manifests/conf.pp" - line: 108 - resource: File[10_sudo-puppet-ohadlevy] - resource_type: File - containment_path: - - Stage[main] - - Users - - Users::Account[ohadlevy] - - Sudo::Conf[sudo-puppet-ohadlevy] - - File[10_sudo-puppet-ohadlevy] - evaluation_time: 0.000786874 - tags: - - file - - 10_sudo-puppet-ohadlevy - - sudo::conf - - sudo - - conf - - sudo-puppet-ohadlevy - - users::account - - users - - account - - ohadlevy - - class - time: '2017-06-28T17:28:31.115189494+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Exec[sudo-syntax-check for file /etc/sudoers.d/10_sudo-puppet-ohadlevy]: !ruby/object:Puppet::Resource::Status - title: sudo-syntax-check for file /etc/sudoers.d/10_sudo-puppet-ohadlevy - file: "/etc/puppetlabs/code/environments/production/modules/sudo/manifests/conf.pp" - line: 119 - resource: Exec[sudo-syntax-check for file /etc/sudoers.d/10_sudo-puppet-ohadlevy] - resource_type: Exec - containment_path: - - Stage[main] - - Users - - Users::Account[ohadlevy] - - Sudo::Conf[sudo-puppet-ohadlevy] - - Exec[sudo-syntax-check for file /etc/sudoers.d/10_sudo-puppet-ohadlevy] - evaluation_time: 0.000183806 - tags: - - exec - - sudo::conf - - sudo - - conf - - sudo-puppet-ohadlevy - - users::account - - users - - account - - ohadlevy - - class - time: '2017-06-28T17:28:31.116461747+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[10_sudo-puppet-bgupta]: !ruby/object:Puppet::Resource::Status - title: 10_sudo-puppet-bgupta - file: "/etc/puppetlabs/code/environments/production/modules/sudo/manifests/conf.pp" - line: 108 - resource: File[10_sudo-puppet-bgupta] - resource_type: File - containment_path: - - Stage[main] - - Users - - Users::Account[bgupta] - - Sudo::Conf[sudo-puppet-bgupta] - - File[10_sudo-puppet-bgupta] - evaluation_time: 0.000771224 - tags: - - file - - 10_sudo-puppet-bgupta - - sudo::conf - - sudo - - conf - - sudo-puppet-bgupta - - users::account - - users - - account - - bgupta - - class - time: '2017-06-28T17:28:31.118189977+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Exec[sudo-syntax-check for file /etc/sudoers.d/10_sudo-puppet-bgupta]: !ruby/object:Puppet::Resource::Status - title: sudo-syntax-check for file /etc/sudoers.d/10_sudo-puppet-bgupta - file: "/etc/puppetlabs/code/environments/production/modules/sudo/manifests/conf.pp" - line: 119 - resource: Exec[sudo-syntax-check for file /etc/sudoers.d/10_sudo-puppet-bgupta] - resource_type: Exec - containment_path: - - Stage[main] - - Users - - Users::Account[bgupta] - - Sudo::Conf[sudo-puppet-bgupta] - - Exec[sudo-syntax-check for file /etc/sudoers.d/10_sudo-puppet-bgupta] - evaluation_time: 0.000188078 - tags: - - exec - - sudo::conf - - sudo - - conf - - sudo-puppet-bgupta - - users::account - - users - - account - - bgupta - - class - time: '2017-06-28T17:28:31.119377470+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[10_sudo-puppet-lzap]: !ruby/object:Puppet::Resource::Status - title: 10_sudo-puppet-lzap - file: "/etc/puppetlabs/code/environments/production/modules/sudo/manifests/conf.pp" - line: 108 - resource: File[10_sudo-puppet-lzap] - resource_type: File - containment_path: - - Stage[main] - - Users - - Users::Account[lzap] - - Sudo::Conf[sudo-puppet-lzap] - - File[10_sudo-puppet-lzap] - evaluation_time: 0.000789582 - tags: - - file - - 10_sudo-puppet-lzap - - sudo::conf - - sudo - - conf - - sudo-puppet-lzap - - users::account - - users - - account - - lzap - - class - time: '2017-06-28T17:28:31.120635861+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Exec[sudo-syntax-check for file /etc/sudoers.d/10_sudo-puppet-lzap]: !ruby/object:Puppet::Resource::Status - title: sudo-syntax-check for file /etc/sudoers.d/10_sudo-puppet-lzap - file: "/etc/puppetlabs/code/environments/production/modules/sudo/manifests/conf.pp" - line: 119 - resource: Exec[sudo-syntax-check for file /etc/sudoers.d/10_sudo-puppet-lzap] - resource_type: Exec - containment_path: - - Stage[main] - - Users - - Users::Account[lzap] - - Sudo::Conf[sudo-puppet-lzap] - - Exec[sudo-syntax-check for file /etc/sudoers.d/10_sudo-puppet-lzap] - evaluation_time: 0.00022283 - tags: - - exec - - sudo::conf - - sudo - - conf - - sudo-puppet-lzap - - users::account - - users - - account - - lzap - - class - time: '2017-06-28T17:28:31.121832100+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[10_sudo-puppet-dcleal]: !ruby/object:Puppet::Resource::Status - title: 10_sudo-puppet-dcleal - file: "/etc/puppetlabs/code/environments/production/modules/sudo/manifests/conf.pp" - line: 108 - resource: File[10_sudo-puppet-dcleal] - resource_type: File - containment_path: - - Stage[main] - - Users - - Users::Account[dcleal] - - Sudo::Conf[sudo-puppet-dcleal] - - File[10_sudo-puppet-dcleal] - evaluation_time: 0.000794632 - tags: - - file - - 10_sudo-puppet-dcleal - - sudo::conf - - sudo - - conf - - sudo-puppet-dcleal - - users::account - - users - - account - - dcleal - - class - time: '2017-06-28T17:28:31.123238172+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Exec[sudo-syntax-check for file /etc/sudoers.d/10_sudo-puppet-dcleal]: !ruby/object:Puppet::Resource::Status - title: sudo-syntax-check for file /etc/sudoers.d/10_sudo-puppet-dcleal - file: "/etc/puppetlabs/code/environments/production/modules/sudo/manifests/conf.pp" - line: 119 - resource: Exec[sudo-syntax-check for file /etc/sudoers.d/10_sudo-puppet-dcleal] - resource_type: Exec - containment_path: - - Stage[main] - - Users - - Users::Account[dcleal] - - Sudo::Conf[sudo-puppet-dcleal] - - Exec[sudo-syntax-check for file /etc/sudoers.d/10_sudo-puppet-dcleal] - evaluation_time: 0.000279702 - tags: - - exec - - sudo::conf - - sudo - - conf - - sudo-puppet-dcleal - - users::account - - users - - account - - dcleal - - class - time: '2017-06-28T17:28:31.124385995+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[10_sudo-puppet-ehelms]: !ruby/object:Puppet::Resource::Status - title: 10_sudo-puppet-ehelms - file: "/etc/puppetlabs/code/environments/production/modules/sudo/manifests/conf.pp" - line: 108 - resource: File[10_sudo-puppet-ehelms] - resource_type: File - containment_path: - - Stage[main] - - Users - - Users::Account[ehelms] - - Sudo::Conf[sudo-puppet-ehelms] - - File[10_sudo-puppet-ehelms] - evaluation_time: 0.000736822 - tags: - - file - - 10_sudo-puppet-ehelms - - sudo::conf - - sudo - - conf - - sudo-puppet-ehelms - - users::account - - users - - account - - ehelms - - class - time: '2017-06-28T17:28:31.125811578+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Exec[sudo-syntax-check for file /etc/sudoers.d/10_sudo-puppet-ehelms]: !ruby/object:Puppet::Resource::Status - title: sudo-syntax-check for file /etc/sudoers.d/10_sudo-puppet-ehelms - file: "/etc/puppetlabs/code/environments/production/modules/sudo/manifests/conf.pp" - line: 119 - resource: Exec[sudo-syntax-check for file /etc/sudoers.d/10_sudo-puppet-ehelms] - resource_type: Exec - containment_path: - - Stage[main] - - Users - - Users::Account[ehelms] - - Sudo::Conf[sudo-puppet-ehelms] - - Exec[sudo-syntax-check for file /etc/sudoers.d/10_sudo-puppet-ehelms] - evaluation_time: 0.000185756 - tags: - - exec - - sudo::conf - - sudo - - conf - - sudo-puppet-ehelms - - users::account - - users - - account - - ehelms - - class - time: '2017-06-28T17:28:31.126914090+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[10_sudo-puppet-mmoll]: !ruby/object:Puppet::Resource::Status - title: 10_sudo-puppet-mmoll - file: "/etc/puppetlabs/code/environments/production/modules/sudo/manifests/conf.pp" - line: 108 - resource: File[10_sudo-puppet-mmoll] - resource_type: File - containment_path: - - Stage[main] - - Users - - Users::Account[mmoll] - - Sudo::Conf[sudo-puppet-mmoll] - - File[10_sudo-puppet-mmoll] - evaluation_time: 0.000775004 - tags: - - file - - 10_sudo-puppet-mmoll - - sudo::conf - - sudo - - conf - - sudo-puppet-mmoll - - users::account - - users - - account - - mmoll - - class - time: '2017-06-28T17:28:31.128093337+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Exec[sudo-syntax-check for file /etc/sudoers.d/10_sudo-puppet-mmoll]: !ruby/object:Puppet::Resource::Status - title: sudo-syntax-check for file /etc/sudoers.d/10_sudo-puppet-mmoll - file: "/etc/puppetlabs/code/environments/production/modules/sudo/manifests/conf.pp" - line: 119 - resource: Exec[sudo-syntax-check for file /etc/sudoers.d/10_sudo-puppet-mmoll] - resource_type: Exec - containment_path: - - Stage[main] - - Users - - Users::Account[mmoll] - - Sudo::Conf[sudo-puppet-mmoll] - - Exec[sudo-syntax-check for file /etc/sudoers.d/10_sudo-puppet-mmoll] - evaluation_time: 0.000172473 - tags: - - exec - - sudo::conf - - sudo - - conf - - sudo-puppet-mmoll - - users::account - - users - - account - - mmoll - - class - time: '2017-06-28T17:28:31.129241820+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[10_sudo-puppet-dbristow]: !ruby/object:Puppet::Resource::Status - title: 10_sudo-puppet-dbristow - file: "/etc/puppetlabs/code/environments/production/modules/sudo/manifests/conf.pp" - line: 108 - resource: File[10_sudo-puppet-dbristow] - resource_type: File - containment_path: - - Stage[main] - - Users - - Users::Account[dbristow] - - Sudo::Conf[sudo-puppet-dbristow] - - File[10_sudo-puppet-dbristow] - evaluation_time: 0.000848147 - tags: - - file - - 10_sudo-puppet-dbristow - - sudo::conf - - sudo - - conf - - sudo-puppet-dbristow - - users::account - - users - - account - - dbristow - - class - time: '2017-06-28T17:28:31.130624295+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Exec[sudo-syntax-check for file /etc/sudoers.d/10_sudo-puppet-dbristow]: !ruby/object:Puppet::Resource::Status - title: sudo-syntax-check for file /etc/sudoers.d/10_sudo-puppet-dbristow - file: "/etc/puppetlabs/code/environments/production/modules/sudo/manifests/conf.pp" - line: 119 - resource: Exec[sudo-syntax-check for file /etc/sudoers.d/10_sudo-puppet-dbristow] - resource_type: Exec - containment_path: - - Stage[main] - - Users - - Users::Account[dbristow] - - Sudo::Conf[sudo-puppet-dbristow] - - Exec[sudo-syntax-check for file /etc/sudoers.d/10_sudo-puppet-dbristow] - evaluation_time: 0.000220158 - tags: - - exec - - sudo::conf - - sudo - - conf - - sudo-puppet-dbristow - - users::account - - users - - account - - dbristow - - class - time: '2017-06-28T17:28:31.131780026+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[10_sudo-puppet-dlobatog]: !ruby/object:Puppet::Resource::Status - title: 10_sudo-puppet-dlobatog - file: "/etc/puppetlabs/code/environments/production/modules/sudo/manifests/conf.pp" - line: 108 - resource: File[10_sudo-puppet-dlobatog] - resource_type: File - containment_path: - - Stage[main] - - Users - - Users::Account[dlobatog] - - Sudo::Conf[sudo-puppet-dlobatog] - - File[10_sudo-puppet-dlobatog] - evaluation_time: 0.000656104 - tags: - - file - - 10_sudo-puppet-dlobatog - - sudo::conf - - sudo - - conf - - sudo-puppet-dlobatog - - users::account - - users - - account - - dlobatog - - class - time: '2017-06-28T17:28:31.132926818+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Exec[sudo-syntax-check for file /etc/sudoers.d/10_sudo-puppet-dlobatog]: !ruby/object:Puppet::Resource::Status - title: sudo-syntax-check for file /etc/sudoers.d/10_sudo-puppet-dlobatog - file: "/etc/puppetlabs/code/environments/production/modules/sudo/manifests/conf.pp" - line: 119 - resource: Exec[sudo-syntax-check for file /etc/sudoers.d/10_sudo-puppet-dlobatog] - resource_type: Exec - containment_path: - - Stage[main] - - Users - - Users::Account[dlobatog] - - Sudo::Conf[sudo-puppet-dlobatog] - - Exec[sudo-syntax-check for file /etc/sudoers.d/10_sudo-puppet-dlobatog] - evaluation_time: 0.000180017 - tags: - - exec - - sudo::conf - - sudo - - conf - - sudo-puppet-dlobatog - - users::account - - users - - account - - dlobatog - - class - time: '2017-06-28T17:28:31.133977840+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[10_sudo-puppet-jenkins]: !ruby/object:Puppet::Resource::Status - title: 10_sudo-puppet-jenkins - file: "/etc/puppetlabs/code/environments/production/modules/sudo/manifests/conf.pp" - line: 108 - resource: File[10_sudo-puppet-jenkins] - resource_type: File - containment_path: - - Stage[main] - - Users::Slave - - Users::Account[jenkins] - - Sudo::Conf[sudo-puppet-jenkins] - - File[10_sudo-puppet-jenkins] - evaluation_time: 0.00074252 - tags: - - file - - 10_sudo-puppet-jenkins - - sudo::conf - - sudo - - conf - - sudo-puppet-jenkins - - users::account - - users - - account - - jenkins - - class - - users::slave - - slave - time: '2017-06-28T17:28:31.135446805+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Exec[sudo-syntax-check for file /etc/sudoers.d/10_sudo-puppet-jenkins]: !ruby/object:Puppet::Resource::Status - title: sudo-syntax-check for file /etc/sudoers.d/10_sudo-puppet-jenkins - file: "/etc/puppetlabs/code/environments/production/modules/sudo/manifests/conf.pp" - line: 119 - resource: Exec[sudo-syntax-check for file /etc/sudoers.d/10_sudo-puppet-jenkins] - resource_type: Exec - containment_path: - - Stage[main] - - Users::Slave - - Users::Account[jenkins] - - Sudo::Conf[sudo-puppet-jenkins] - - Exec[sudo-syntax-check for file /etc/sudoers.d/10_sudo-puppet-jenkins] - evaluation_time: 0.00020274 - tags: - - exec - - sudo::conf - - sudo - - conf - - sudo-puppet-jenkins - - users::account - - users - - account - - jenkins - - class - - users::slave - - slave - time: '2017-06-28T17:28:31.136582269+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Concat_fragment[puppet.conf_main]: !ruby/object:Puppet::Resource::Status - title: puppet.conf_main - file: "/etc/puppetlabs/code/environments/production/modules/concat/manifests/fragment.pp" - line: 30 - resource: Concat_fragment[puppet.conf_main] - resource_type: Concat_fragment - containment_path: - - Stage[main] - - Puppet::Config - - Puppet::Config::Main[vardir] - - Puppet::Config::Entry[mainvardir] - - Concat::Fragment[puppet.conf_main] - - Concat_fragment[puppet.conf_main] - evaluation_time: 0.00011503 - tags: - - concat_fragment - - puppet.conf_main - - _etc_puppetlabs_puppet_puppet.conf - - concat::fragment - - concat - - fragment - - puppet::config::entry - - puppet - - config - - entry - - mainvardir - - puppet::config::main - - main - - vardir - - class - - puppet::config - time: '2017-06-28T17:28:31.138126650+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Concat_fragment[puppet.conf_main_vardir]: !ruby/object:Puppet::Resource::Status - title: puppet.conf_main_vardir - file: "/etc/puppetlabs/code/environments/production/modules/concat/manifests/fragment.pp" - line: 30 - resource: Concat_fragment[puppet.conf_main_vardir] - resource_type: Concat_fragment - containment_path: - - Stage[main] - - Puppet::Config - - Puppet::Config::Main[vardir] - - Puppet::Config::Entry[mainvardir] - - Concat::Fragment[puppet.conf_main_vardir] - - Concat_fragment[puppet.conf_main_vardir] - evaluation_time: 0.000101758 - tags: - - concat_fragment - - puppet.conf_main_vardir - - _etc_puppetlabs_puppet_puppet.conf - - concat::fragment - - concat - - fragment - - puppet::config::entry - - puppet - - config - - entry - - mainvardir - - puppet::config::main - - main - - vardir - - class - - puppet::config - time: '2017-06-28T17:28:31.139004513+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Concat_fragment[puppet.conf_main_logdir]: !ruby/object:Puppet::Resource::Status - title: puppet.conf_main_logdir - file: "/etc/puppetlabs/code/environments/production/modules/concat/manifests/fragment.pp" - line: 30 - resource: Concat_fragment[puppet.conf_main_logdir] - resource_type: Concat_fragment - containment_path: - - Stage[main] - - Puppet::Config - - Puppet::Config::Main[logdir] - - Puppet::Config::Entry[mainlogdir] - - Concat::Fragment[puppet.conf_main_logdir] - - Concat_fragment[puppet.conf_main_logdir] - evaluation_time: 0.000168046 - tags: - - concat_fragment - - puppet.conf_main_logdir - - _etc_puppetlabs_puppet_puppet.conf - - concat::fragment - - concat - - fragment - - puppet::config::entry - - puppet - - config - - entry - - mainlogdir - - puppet::config::main - - main - - logdir - - class - - puppet::config - time: '2017-06-28T17:28:31.140524367+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Concat_fragment[puppet.conf_main_rundir]: !ruby/object:Puppet::Resource::Status - title: puppet.conf_main_rundir - file: "/etc/puppetlabs/code/environments/production/modules/concat/manifests/fragment.pp" - line: 30 - resource: Concat_fragment[puppet.conf_main_rundir] - resource_type: Concat_fragment - containment_path: - - Stage[main] - - Puppet::Config - - Puppet::Config::Main[rundir] - - Puppet::Config::Entry[mainrundir] - - Concat::Fragment[puppet.conf_main_rundir] - - Concat_fragment[puppet.conf_main_rundir] - evaluation_time: 0.000115344 - tags: - - concat_fragment - - puppet.conf_main_rundir - - _etc_puppetlabs_puppet_puppet.conf - - concat::fragment - - concat - - fragment - - puppet::config::entry - - puppet - - config - - entry - - mainrundir - - puppet::config::main - - main - - rundir - - class - - puppet::config - time: '2017-06-28T17:28:31.141985167+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Concat_fragment[puppet.conf_main_ssldir]: !ruby/object:Puppet::Resource::Status - title: puppet.conf_main_ssldir - file: "/etc/puppetlabs/code/environments/production/modules/concat/manifests/fragment.pp" - line: 30 - resource: Concat_fragment[puppet.conf_main_ssldir] - resource_type: Concat_fragment - containment_path: - - Stage[main] - - Puppet::Config - - Puppet::Config::Main[ssldir] - - Puppet::Config::Entry[mainssldir] - - Concat::Fragment[puppet.conf_main_ssldir] - - Concat_fragment[puppet.conf_main_ssldir] - evaluation_time: 0.000174066 - tags: - - concat_fragment - - puppet.conf_main_ssldir - - _etc_puppetlabs_puppet_puppet.conf - - concat::fragment - - concat - - fragment - - puppet::config::entry - - puppet - - config - - entry - - mainssldir - - puppet::config::main - - main - - ssldir - - class - - puppet::config - time: '2017-06-28T17:28:31.143516895+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Concat_fragment[puppet.conf_main_privatekeydir]: !ruby/object:Puppet::Resource::Status - title: puppet.conf_main_privatekeydir - file: "/etc/puppetlabs/code/environments/production/modules/concat/manifests/fragment.pp" - line: 30 - resource: Concat_fragment[puppet.conf_main_privatekeydir] - resource_type: Concat_fragment - containment_path: - - Stage[main] - - Puppet::Config - - Puppet::Config::Main[privatekeydir] - - Puppet::Config::Entry[mainprivatekeydir] - - Concat::Fragment[puppet.conf_main_privatekeydir] - - Concat_fragment[puppet.conf_main_privatekeydir] - evaluation_time: 0.000130446 - tags: - - concat_fragment - - puppet.conf_main_privatekeydir - - _etc_puppetlabs_puppet_puppet.conf - - concat::fragment - - concat - - fragment - - puppet::config::entry - - puppet - - config - - entry - - mainprivatekeydir - - puppet::config::main - - main - - privatekeydir - - class - - puppet::config - time: '2017-06-28T17:28:31.145618161+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Concat_fragment[puppet.conf_main_hostprivkey]: !ruby/object:Puppet::Resource::Status - title: puppet.conf_main_hostprivkey - file: "/etc/puppetlabs/code/environments/production/modules/concat/manifests/fragment.pp" - line: 30 - resource: Concat_fragment[puppet.conf_main_hostprivkey] - resource_type: Concat_fragment - containment_path: - - Stage[main] - - Puppet::Config - - Puppet::Config::Main[hostprivkey] - - Puppet::Config::Entry[mainhostprivkey] - - Concat::Fragment[puppet.conf_main_hostprivkey] - - Concat_fragment[puppet.conf_main_hostprivkey] - evaluation_time: 0.000110384 - tags: - - concat_fragment - - puppet.conf_main_hostprivkey - - _etc_puppetlabs_puppet_puppet.conf - - concat::fragment - - concat - - fragment - - puppet::config::entry - - puppet - - config - - entry - - mainhostprivkey - - puppet::config::main - - main - - hostprivkey - - class - - puppet::config - time: '2017-06-28T17:28:31.147069967+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Concat_fragment[puppet.conf_main_show_diff]: !ruby/object:Puppet::Resource::Status - title: puppet.conf_main_show_diff - file: "/etc/puppetlabs/code/environments/production/modules/concat/manifests/fragment.pp" - line: 30 - resource: Concat_fragment[puppet.conf_main_show_diff] - resource_type: Concat_fragment - containment_path: - - Stage[main] - - Puppet::Config - - Puppet::Config::Main[show_diff] - - Puppet::Config::Entry[mainshow_diff] - - Concat::Fragment[puppet.conf_main_show_diff] - - Concat_fragment[puppet.conf_main_show_diff] - evaluation_time: 0.000155903 - tags: - - concat_fragment - - puppet.conf_main_show_diff - - _etc_puppetlabs_puppet_puppet.conf - - concat::fragment - - concat - - fragment - - puppet::config::entry - - puppet - - config - - entry - - mainshow_diff - - puppet::config::main - - main - - show_diff - - class - - puppet::config - time: '2017-06-28T17:28:31.148376092+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Concat_fragment[puppet.conf_main_pluginsource]: !ruby/object:Puppet::Resource::Status - title: puppet.conf_main_pluginsource - file: "/etc/puppetlabs/code/environments/production/modules/concat/manifests/fragment.pp" - line: 30 - resource: Concat_fragment[puppet.conf_main_pluginsource] - resource_type: Concat_fragment - containment_path: - - Stage[main] - - Puppet::Config - - Puppet::Config::Main[pluginsource] - - Puppet::Config::Entry[mainpluginsource] - - Concat::Fragment[puppet.conf_main_pluginsource] - - Concat_fragment[puppet.conf_main_pluginsource] - evaluation_time: 0.000107708 - tags: - - concat_fragment - - puppet.conf_main_pluginsource - - _etc_puppetlabs_puppet_puppet.conf - - concat::fragment - - concat - - fragment - - puppet::config::entry - - puppet - - config - - entry - - mainpluginsource - - puppet::config::main - - main - - pluginsource - - class - - puppet::config - time: '2017-06-28T17:28:31.150054419+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Concat_fragment[puppet.conf_main_pluginfactsource]: !ruby/object:Puppet::Resource::Status - title: puppet.conf_main_pluginfactsource - file: "/etc/puppetlabs/code/environments/production/modules/concat/manifests/fragment.pp" - line: 30 - resource: Concat_fragment[puppet.conf_main_pluginfactsource] - resource_type: Concat_fragment - containment_path: - - Stage[main] - - Puppet::Config - - Puppet::Config::Main[pluginfactsource] - - Puppet::Config::Entry[mainpluginfactsource] - - Concat::Fragment[puppet.conf_main_pluginfactsource] - - Concat_fragment[puppet.conf_main_pluginfactsource] - evaluation_time: 0.000142634 - tags: - - concat_fragment - - puppet.conf_main_pluginfactsource - - _etc_puppetlabs_puppet_puppet.conf - - concat::fragment - - concat - - fragment - - puppet::config::entry - - puppet - - config - - entry - - mainpluginfactsource - - puppet::config::main - - main - - pluginfactsource - - class - - puppet::config - time: '2017-06-28T17:28:31.151389810+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Concat_fragment[puppet.conf_agent]: !ruby/object:Puppet::Resource::Status - title: puppet.conf_agent - file: "/etc/puppetlabs/code/environments/production/modules/concat/manifests/fragment.pp" - line: 30 - resource: Concat_fragment[puppet.conf_agent] - resource_type: Concat_fragment - containment_path: - - Stage[main] - - Puppet::Agent::Config - - Puppet::Config::Agent[classfile] - - Puppet::Config::Entry[agent_classfile] - - Concat::Fragment[puppet.conf_agent] - - Concat_fragment[puppet.conf_agent] - evaluation_time: 0.000114468 - tags: - - concat_fragment - - puppet.conf_agent - - _etc_puppetlabs_puppet_puppet.conf - - concat::fragment - - concat - - fragment - - puppet::config::entry - - puppet - - config - - entry - - agent_classfile - - puppet::config::agent - - agent - - classfile - - class - - puppet::agent::config - - puppet::agent - time: '2017-06-28T17:28:31.153019711+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Concat_fragment[puppet.conf_agent_classfile]: !ruby/object:Puppet::Resource::Status - title: puppet.conf_agent_classfile - file: "/etc/puppetlabs/code/environments/production/modules/concat/manifests/fragment.pp" - line: 30 - resource: Concat_fragment[puppet.conf_agent_classfile] - resource_type: Concat_fragment - containment_path: - - Stage[main] - - Puppet::Agent::Config - - Puppet::Config::Agent[classfile] - - Puppet::Config::Entry[agent_classfile] - - Concat::Fragment[puppet.conf_agent_classfile] - - Concat_fragment[puppet.conf_agent_classfile] - evaluation_time: 0.000172981 - tags: - - concat_fragment - - puppet.conf_agent_classfile - - _etc_puppetlabs_puppet_puppet.conf - - concat::fragment - - concat - - fragment - - puppet::config::entry - - puppet - - config - - entry - - agent_classfile - - puppet::config::agent - - agent - - classfile - - class - - puppet::agent::config - - puppet::agent - time: '2017-06-28T17:28:31.153934377+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Concat_fragment[puppet.conf_agent_localconfig]: !ruby/object:Puppet::Resource::Status - title: puppet.conf_agent_localconfig - file: "/etc/puppetlabs/code/environments/production/modules/concat/manifests/fragment.pp" - line: 30 - resource: Concat_fragment[puppet.conf_agent_localconfig] - resource_type: Concat_fragment - containment_path: - - Stage[main] - - Puppet::Agent::Config - - Puppet::Config::Agent[localconfig] - - Puppet::Config::Entry[agent_localconfig] - - Concat::Fragment[puppet.conf_agent_localconfig] - - Concat_fragment[puppet.conf_agent_localconfig] - evaluation_time: 0.000104511 - tags: - - concat_fragment - - puppet.conf_agent_localconfig - - _etc_puppetlabs_puppet_puppet.conf - - concat::fragment - - concat - - fragment - - puppet::config::entry - - puppet - - config - - entry - - agent_localconfig - - puppet::config::agent - - agent - - localconfig - - class - - puppet::agent::config - - puppet::agent - time: '2017-06-28T17:28:31.155439385+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Concat_fragment[puppet.conf_agent_default_schedules]: !ruby/object:Puppet::Resource::Status - title: puppet.conf_agent_default_schedules - file: "/etc/puppetlabs/code/environments/production/modules/concat/manifests/fragment.pp" - line: 30 - resource: Concat_fragment[puppet.conf_agent_default_schedules] - resource_type: Concat_fragment - containment_path: - - Stage[main] - - Puppet::Agent::Config - - Puppet::Config::Agent[default_schedules] - - Puppet::Config::Entry[agent_default_schedules] - - Concat::Fragment[puppet.conf_agent_default_schedules] - - Concat_fragment[puppet.conf_agent_default_schedules] - evaluation_time: 0.00011211 - tags: - - concat_fragment - - puppet.conf_agent_default_schedules - - _etc_puppetlabs_puppet_puppet.conf - - concat::fragment - - concat - - fragment - - puppet::config::entry - - puppet - - config - - entry - - agent_default_schedules - - puppet::config::agent - - agent - - default_schedules - - class - - puppet::agent::config - - puppet::agent - time: '2017-06-28T17:28:31.156973705+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Concat_fragment[puppet.conf_agent_report]: !ruby/object:Puppet::Resource::Status - title: puppet.conf_agent_report - file: "/etc/puppetlabs/code/environments/production/modules/concat/manifests/fragment.pp" - line: 30 - resource: Concat_fragment[puppet.conf_agent_report] - resource_type: Concat_fragment - containment_path: - - Stage[main] - - Puppet::Agent::Config - - Puppet::Config::Agent[report] - - Puppet::Config::Entry[agent_report] - - Concat::Fragment[puppet.conf_agent_report] - - Concat_fragment[puppet.conf_agent_report] - evaluation_time: 0.000112874 - tags: - - concat_fragment - - puppet.conf_agent_report - - _etc_puppetlabs_puppet_puppet.conf - - concat::fragment - - concat - - fragment - - puppet::config::entry - - puppet - - config - - entry - - agent_report - - puppet::config::agent - - agent - - report - - class - - puppet::agent::config - - puppet::agent - time: '2017-06-28T17:28:31.158292498+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Concat_fragment[puppet.conf_agent_pluginsync]: !ruby/object:Puppet::Resource::Status - title: puppet.conf_agent_pluginsync - file: "/etc/puppetlabs/code/environments/production/modules/concat/manifests/fragment.pp" - line: 30 - resource: Concat_fragment[puppet.conf_agent_pluginsync] - resource_type: Concat_fragment - containment_path: - - Stage[main] - - Puppet::Agent::Config - - Puppet::Config::Agent[pluginsync] - - Puppet::Config::Entry[agent_pluginsync] - - Concat::Fragment[puppet.conf_agent_pluginsync] - - Concat_fragment[puppet.conf_agent_pluginsync] - evaluation_time: 0.000161607 - tags: - - concat_fragment - - puppet.conf_agent_pluginsync - - _etc_puppetlabs_puppet_puppet.conf - - concat::fragment - - concat - - fragment - - puppet::config::entry - - puppet - - config - - entry - - agent_pluginsync - - puppet::config::agent - - agent - - pluginsync - - class - - puppet::agent::config - - puppet::agent - time: '2017-06-28T17:28:31.160063729+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Concat_fragment[puppet.conf_agent_masterport]: !ruby/object:Puppet::Resource::Status - title: puppet.conf_agent_masterport - file: "/etc/puppetlabs/code/environments/production/modules/concat/manifests/fragment.pp" - line: 30 - resource: Concat_fragment[puppet.conf_agent_masterport] - resource_type: Concat_fragment - containment_path: - - Stage[main] - - Puppet::Agent::Config - - Puppet::Config::Agent[masterport] - - Puppet::Config::Entry[agent_masterport] - - Concat::Fragment[puppet.conf_agent_masterport] - - Concat_fragment[puppet.conf_agent_masterport] - evaluation_time: 0.000114218 - tags: - - concat_fragment - - puppet.conf_agent_masterport - - _etc_puppetlabs_puppet_puppet.conf - - concat::fragment - - concat - - fragment - - puppet::config::entry - - puppet - - config - - entry - - agent_masterport - - puppet::config::agent - - agent - - masterport - - class - - puppet::agent::config - - puppet::agent - time: '2017-06-28T17:28:31.161712048+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Concat_fragment[puppet.conf_agent_environment]: !ruby/object:Puppet::Resource::Status - title: puppet.conf_agent_environment - file: "/etc/puppetlabs/code/environments/production/modules/concat/manifests/fragment.pp" - line: 30 - resource: Concat_fragment[puppet.conf_agent_environment] - resource_type: Concat_fragment - containment_path: - - Stage[main] - - Puppet::Agent::Config - - Puppet::Config::Agent[environment] - - Puppet::Config::Entry[agent_environment] - - Concat::Fragment[puppet.conf_agent_environment] - - Concat_fragment[puppet.conf_agent_environment] - evaluation_time: 0.000114125 - tags: - - concat_fragment - - puppet.conf_agent_environment - - _etc_puppetlabs_puppet_puppet.conf - - concat::fragment - - concat - - fragment - - puppet::config::entry - - puppet - - config - - entry - - agent_environment - - puppet::config::agent - - agent - - environment - - class - - puppet::agent::config - - puppet::agent - time: '2017-06-28T17:28:31.163128937+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Concat_fragment[puppet.conf_agent_certname]: !ruby/object:Puppet::Resource::Status - title: puppet.conf_agent_certname - file: "/etc/puppetlabs/code/environments/production/modules/concat/manifests/fragment.pp" - line: 30 - resource: Concat_fragment[puppet.conf_agent_certname] - resource_type: Concat_fragment - containment_path: - - Stage[main] - - Puppet::Agent::Config - - Puppet::Config::Agent[certname] - - Puppet::Config::Entry[agent_certname] - - Concat::Fragment[puppet.conf_agent_certname] - - Concat_fragment[puppet.conf_agent_certname] - evaluation_time: 0.00011719 - tags: - - concat_fragment - - puppet.conf_agent_certname - - _etc_puppetlabs_puppet_puppet.conf - - concat::fragment - - concat - - fragment - - puppet::config::entry - - puppet - - config - - entry - - agent_certname - - puppet::config::agent - - agent - - certname - - class - - puppet::agent::config - - puppet::agent - time: '2017-06-28T17:28:31.164395113+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Concat_fragment[puppet.conf_agent_listen]: !ruby/object:Puppet::Resource::Status - title: puppet.conf_agent_listen - file: "/etc/puppetlabs/code/environments/production/modules/concat/manifests/fragment.pp" - line: 30 - resource: Concat_fragment[puppet.conf_agent_listen] - resource_type: Concat_fragment - containment_path: - - Stage[main] - - Puppet::Agent::Config - - Puppet::Config::Agent[listen] - - Puppet::Config::Entry[agent_listen] - - Concat::Fragment[puppet.conf_agent_listen] - - Concat_fragment[puppet.conf_agent_listen] - evaluation_time: 0.000122532 - tags: - - concat_fragment - - puppet.conf_agent_listen - - _etc_puppetlabs_puppet_puppet.conf - - concat::fragment - - concat - - fragment - - puppet::config::entry - - puppet - - config - - entry - - agent_listen - - puppet::config::agent - - agent - - listen - - class - - puppet::agent::config - - puppet::agent - time: '2017-06-28T17:28:31.165773920+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Concat_fragment[puppet.conf_agent_splay]: !ruby/object:Puppet::Resource::Status - title: puppet.conf_agent_splay - file: "/etc/puppetlabs/code/environments/production/modules/concat/manifests/fragment.pp" - line: 30 - resource: Concat_fragment[puppet.conf_agent_splay] - resource_type: Concat_fragment - containment_path: - - Stage[main] - - Puppet::Agent::Config - - Puppet::Config::Agent[splay] - - Puppet::Config::Entry[agent_splay] - - Concat::Fragment[puppet.conf_agent_splay] - - Concat_fragment[puppet.conf_agent_splay] - evaluation_time: 0.00025267 - tags: - - concat_fragment - - puppet.conf_agent_splay - - _etc_puppetlabs_puppet_puppet.conf - - concat::fragment - - concat - - fragment - - puppet::config::entry - - puppet - - config - - entry - - agent_splay - - puppet::config::agent - - agent - - splay - - class - - puppet::agent::config - - puppet::agent - time: '2017-06-28T17:28:31.167344176+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Concat_fragment[puppet.conf_agent_splaylimit]: !ruby/object:Puppet::Resource::Status - title: puppet.conf_agent_splaylimit - file: "/etc/puppetlabs/code/environments/production/modules/concat/manifests/fragment.pp" - line: 30 - resource: Concat_fragment[puppet.conf_agent_splaylimit] - resource_type: Concat_fragment - containment_path: - - Stage[main] - - Puppet::Agent::Config - - Puppet::Config::Agent[splaylimit] - - Puppet::Config::Entry[agent_splaylimit] - - Concat::Fragment[puppet.conf_agent_splaylimit] - - Concat_fragment[puppet.conf_agent_splaylimit] - evaluation_time: 0.00010695 - tags: - - concat_fragment - - puppet.conf_agent_splaylimit - - _etc_puppetlabs_puppet_puppet.conf - - concat::fragment - - concat - - fragment - - puppet::config::entry - - puppet - - config - - entry - - agent_splaylimit - - puppet::config::agent - - agent - - splaylimit - - class - - puppet::agent::config - - puppet::agent - time: '2017-06-28T17:28:31.168957531+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Concat_fragment[puppet.conf_agent_runinterval]: !ruby/object:Puppet::Resource::Status - title: puppet.conf_agent_runinterval - file: "/etc/puppetlabs/code/environments/production/modules/concat/manifests/fragment.pp" - line: 30 - resource: Concat_fragment[puppet.conf_agent_runinterval] - resource_type: Concat_fragment - containment_path: - - Stage[main] - - Puppet::Agent::Config - - Puppet::Config::Agent[runinterval] - - Puppet::Config::Entry[agent_runinterval] - - Concat::Fragment[puppet.conf_agent_runinterval] - - Concat_fragment[puppet.conf_agent_runinterval] - evaluation_time: 0.000221015 - tags: - - concat_fragment - - puppet.conf_agent_runinterval - - _etc_puppetlabs_puppet_puppet.conf - - concat::fragment - - concat - - fragment - - puppet::config::entry - - puppet - - config - - entry - - agent_runinterval - - puppet::config::agent - - agent - - runinterval - - class - - puppet::agent::config - - puppet::agent - time: '2017-06-28T17:28:31.170305016+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Concat_fragment[puppet.conf_agent_noop]: !ruby/object:Puppet::Resource::Status - title: puppet.conf_agent_noop - file: "/etc/puppetlabs/code/environments/production/modules/concat/manifests/fragment.pp" - line: 30 - resource: Concat_fragment[puppet.conf_agent_noop] - resource_type: Concat_fragment - containment_path: - - Stage[main] - - Puppet::Agent::Config - - Puppet::Config::Agent[noop] - - Puppet::Config::Entry[agent_noop] - - Concat::Fragment[puppet.conf_agent_noop] - - Concat_fragment[puppet.conf_agent_noop] - evaluation_time: 0.000120517 - tags: - - concat_fragment - - puppet.conf_agent_noop - - _etc_puppetlabs_puppet_puppet.conf - - concat::fragment - - concat - - fragment - - puppet::config::entry - - puppet - - config - - entry - - agent_noop - - puppet::config::agent - - agent - - noop - - class - - puppet::agent::config - - puppet::agent - time: '2017-06-28T17:28:31.172399131+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Concat_fragment[puppet.conf_agent_usecacheonfailure]: !ruby/object:Puppet::Resource::Status - title: puppet.conf_agent_usecacheonfailure - file: "/etc/puppetlabs/code/environments/production/modules/concat/manifests/fragment.pp" - line: 30 - resource: Concat_fragment[puppet.conf_agent_usecacheonfailure] - resource_type: Concat_fragment - containment_path: - - Stage[main] - - Puppet::Agent::Config - - Puppet::Config::Agent[usecacheonfailure] - - Puppet::Config::Entry[agent_usecacheonfailure] - - Concat::Fragment[puppet.conf_agent_usecacheonfailure] - - Concat_fragment[puppet.conf_agent_usecacheonfailure] - evaluation_time: 0.000246504 - tags: - - concat_fragment - - puppet.conf_agent_usecacheonfailure - - _etc_puppetlabs_puppet_puppet.conf - - concat::fragment - - concat - - fragment - - puppet::config::entry - - puppet - - config - - entry - - agent_usecacheonfailure - - puppet::config::agent - - agent - - usecacheonfailure - - class - - puppet::agent::config - - puppet::agent - time: '2017-06-28T17:28:31.174331385+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Concat_fragment[puppet.conf_agent_server]: !ruby/object:Puppet::Resource::Status - title: puppet.conf_agent_server - file: "/etc/puppetlabs/code/environments/production/modules/concat/manifests/fragment.pp" - line: 30 - resource: Concat_fragment[puppet.conf_agent_server] - resource_type: Concat_fragment - containment_path: - - Stage[main] - - Puppet::Agent::Config - - Puppet::Config::Agent[server] - - Puppet::Config::Entry[agent_server] - - Concat::Fragment[puppet.conf_agent_server] - - Concat_fragment[puppet.conf_agent_server] - evaluation_time: 0.000104188 - tags: - - concat_fragment - - puppet.conf_agent_server - - _etc_puppetlabs_puppet_puppet.conf - - concat::fragment - - concat - - fragment - - puppet::config::entry - - puppet - - config - - entry - - agent_server - - puppet::config::agent - - agent - - server - - class - - puppet::agent::config - - puppet::agent - time: '2017-06-28T17:28:31.176071791+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Anchor[puppet::agent::service_start]: !ruby/object:Puppet::Resource::Status - title: puppet::agent::service_start - file: "/etc/puppetlabs/code/environments/production/modules/puppet/manifests/agent/service.pp" - line: 34 - resource: Anchor[puppet::agent::service_start] - resource_type: Anchor - containment_path: - - Stage[main] - - Puppet::Agent::Service - - Anchor[puppet::agent::service_start] - evaluation_time: 0.000126696 - tags: - - anchor - - puppet::agent::service_start - - puppet - - agent - - service_start - - class - - puppet::agent::service - - service - - puppet::agent - time: '2017-06-28T17:28:31.177940328+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Service[puppet]: !ruby/object:Puppet::Resource::Status - title: puppet - file: "/etc/puppetlabs/code/environments/production/modules/puppet/manifests/agent/service/daemon.pp" - line: 17 - resource: Service[puppet] - resource_type: Service - containment_path: - - Stage[main] - - Puppet::Agent::Service::Daemon - - Service[puppet] - evaluation_time: 0.02054308 - tags: - - service - - puppet - - class - - puppet::agent::service::daemon - - agent - - daemon - - puppet::agent::service - - puppet::agent - time: '2017-06-28T17:28:31.178983739+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Service[puppet-run.timer]: !ruby/object:Puppet::Resource::Status - title: puppet-run.timer - file: "/etc/puppetlabs/code/environments/production/modules/puppet/manifests/agent/service/systemd.pp" - line: 44 - resource: Service[puppet-run.timer] - resource_type: Service - containment_path: - - Stage[main] - - Puppet::Agent::Service::Systemd - - Service[puppet-run.timer] - evaluation_time: 0.02062794 - tags: - - service - - puppet-run.timer - - class - - puppet::agent::service::systemd - - puppet - - agent - - systemd - - puppet::agent::service - - puppet::agent - time: '2017-06-28T17:28:31.201117255+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/etc/systemd/system/puppet-run.timer]: !ruby/object:Puppet::Resource::Status - title: "/etc/systemd/system/puppet-run.timer" - file: "/etc/puppetlabs/code/environments/production/modules/puppet/manifests/agent/service/systemd.pp" - line: 55 - resource: File[/etc/systemd/system/puppet-run.timer] - resource_type: File - containment_path: - - Stage[main] - - Puppet::Agent::Service::Systemd - - File[/etc/systemd/system/puppet-run.timer] - evaluation_time: 0.000557707 - tags: - - file - - class - - puppet::agent::service::systemd - - puppet - - agent - - service - - systemd - - puppet::agent::service - - puppet::agent - time: '2017-06-28T17:28:31.222657233+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - File[/etc/systemd/system/puppet-run.service]: !ruby/object:Puppet::Resource::Status - title: "/etc/systemd/system/puppet-run.service" - file: "/etc/puppetlabs/code/environments/production/modules/puppet/manifests/agent/service/systemd.pp" - line: 60 - resource: File[/etc/systemd/system/puppet-run.service] - resource_type: File - containment_path: - - Stage[main] - - Puppet::Agent::Service::Systemd - - File[/etc/systemd/system/puppet-run.service] - evaluation_time: 0.000451114 - tags: - - file - - class - - puppet::agent::service::systemd - - puppet - - agent - - service - - systemd - - puppet::agent::service - - puppet::agent - time: '2017-06-28T17:28:31.223770460+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Exec[systemctl-daemon-reload-puppet]: !ruby/object:Puppet::Resource::Status - title: systemctl-daemon-reload-puppet - file: "/etc/puppetlabs/code/environments/production/modules/puppet/manifests/agent/service/systemd.pp" - line: 5 - resource: Exec[systemctl-daemon-reload-puppet] - resource_type: Exec - containment_path: - - Stage[main] - - Puppet::Agent::Service::Systemd - - Exec[systemctl-daemon-reload-puppet] - evaluation_time: 0.000318059 - tags: - - exec - - systemctl-daemon-reload-puppet - - class - - puppet::agent::service::systemd - - puppet - - agent - - service - - systemd - - puppet::agent::service - - puppet::agent - time: '2017-06-28T17:28:31.224787412+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Cron[puppet]: !ruby/object:Puppet::Resource::Status - title: puppet - file: "/etc/puppetlabs/code/environments/production/modules/puppet/manifests/agent/service/cron.pp" - line: 13 - resource: Cron[puppet] - resource_type: Cron - containment_path: - - Stage[main] - - Puppet::Agent::Service::Cron - - Cron[puppet] - evaluation_time: 0.00072971 - tags: - - cron - - puppet - - class - - puppet::agent::service::cron - - agent - - service - - puppet::agent::service - - puppet::agent - time: '2017-06-28T17:28:31.239392003+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Anchor[puppet::agent::service_end]: !ruby/object:Puppet::Resource::Status - title: puppet::agent::service_end - file: "/etc/puppetlabs/code/environments/production/modules/puppet/manifests/agent/service.pp" - line: 35 - resource: Anchor[puppet::agent::service_end] - resource_type: Anchor - containment_path: - - Stage[main] - - Puppet::Agent::Service - - Anchor[puppet::agent::service_end] - evaluation_time: 0.00014499 - tags: - - anchor - - puppet::agent::service_end - - puppet - - agent - - service_end - - class - - puppet::agent::service - - service - - puppet::agent - time: '2017-06-28T17:28:31.241073198+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false - Filebucket[puppet]: !ruby/object:Puppet::Resource::Status - title: puppet - file: - line: - resource: Filebucket[puppet] - resource_type: Filebucket - containment_path: - - Filebucket[puppet] - evaluation_time: 0.000201438 - tags: - - filebucket - - puppet - time: '2017-06-28T17:28:31.244273559+00:00' - failed: false - changed: false - out_of_sync: false - skipped: false - change_count: 0 - out_of_sync_count: 0 - events: [] - corrective_change: false -host: slave01.rackspace.theforeman.org -cached_catalog_status: not_used diff --git a/spec/static_fixtures/report-log-preprocessed.yaml b/spec/static_fixtures/report-log-preprocessed.yaml deleted file mode 100644 index 1cca58e95..000000000 --- a/spec/static_fixtures/report-log-preprocessed.yaml +++ /dev/null @@ -1,290 +0,0 @@ ---- !ruby/object:Puppet::Transaction::Report - kind: apply - time: 2012-11-09 15:39:28.292927 +00:00 - configuration_version: 1352475569 - report_format: 3 - logs: - - !ruby/object:Puppet::Util::Log - time: 2012-11-09 15:39:28.378352 +00:00 - level: !ruby/sym info - message: "Retrieving plugin" - tags: - - info - source: //puppetmaster.vm1/Puppet - - !ruby/object:Puppet::Util::Log - time: 2012-11-09 15:39:29.134836 +00:00 - level: !ruby/sym info - message: "Caching catalog for puppetmaster.vm1" - tags: - - info - source: //puppetmaster.vm1/Puppet - - !ruby/object:Puppet::Util::Log - time: 2012-11-09 15:39:29.251560 +00:00 - level: !ruby/sym info - message: "Applying configuration version '1352475569'" - tags: - - info - source: //puppetmaster.vm1/Puppet - - !ruby/object:Puppet::Util::Log - time: 2012-11-09 15:39:29.262587 +00:00 - level: !ruby/sym notice - message: yay - tags: - - notice - source: //puppetmaster.vm1/Puppet - - !ruby/object:Puppet::Util::Log - time: 2012-11-09 15:39:29.263250 +00:00 - file: /etc/puppet/manifests/site.pp - level: !ruby/sym notice - message: "defined 'message' as 'yay'" - tags: - - notice - - notify - - yay - - node - - default - - class - source: /Stage[main]//Node[default]/Notify[yay]/message - line: 2 - - !ruby/object:Puppet::Util::Log - time: 2012-11-09 15:39:29.270773 +00:00 - level: !ruby/sym info - message: "Creating state file /var/lib/puppet/state/state.yaml" - tags: - - info - source: //puppetmaster.vm1/Puppet - - !ruby/object:Puppet::Util::Log - time: 2012-11-09 15:39:29.448142 +00:00 - level: !ruby/sym notice - message: "Finished catalog run in 0.20 seconds" - tags: - - notice - source: //puppetmaster.vm1/Puppet - - !ruby/object:Puppet::Util::Log - time: 2012-11-09 15:39:29.448142 +00:00 - level: !ruby/sym err - tags: - - err - message: "Could not retrieve catalog from remote server: Error 400 on SERVER: Undefined variable \x22::repository\x22; Undefined variable \x22repository\x22 at /etc/puppet/environments/production/manifests/site.pp:17 on node puppetmaster.vm1" - source: //puppetmaster.vm1/Puppet - resource_statuses: - Schedule[monthly]: !ruby/object:Puppet::Resource::Status - resource: Schedule[monthly] - file: - line: - change_count: 0 - out_of_sync_count: 0 - tags: - - schedule - - monthly - time: 2012-11-09 15:39:29.256862 +00:00 - events: [] - out_of_sync: false - changed: false - resource_type: Schedule - title: monthly - skipped: true - failed: false - Filebucket[puppet]: !ruby/object:Puppet::Resource::Status - resource: Filebucket[puppet] - file: - line: - evaluation_time: 0.000216 - change_count: 0 - out_of_sync_count: 0 - tags: - - filebucket - - puppet - time: 2012-11-09 15:39:29.267517 +00:00 - events: [] - out_of_sync: false - changed: false - resource_type: Filebucket - title: puppet - skipped: false - failed: false - Notify[yay]: !ruby/object:Puppet::Resource::Status - resource: Notify[yay] - file: /etc/puppet/manifests/site.pp - line: 2 - evaluation_time: 0.0019 - change_count: 1 - out_of_sync_count: 1 - tags: - - notify - - yay - - node - - default - - class - time: 2012-11-09 15:39:29.262048 +00:00 - events: - - !ruby/object:Puppet::Transaction::Event - audited: false - property: message - previous_value: !ruby/sym absent - desired_value: yay - historical_value: - message: "defined 'message' as 'yay'" - name: !ruby/sym message_changed - status: success - time: 2012-11-09 15:39:29.262382 +00:00 - out_of_sync: true - changed: true - resource_type: Notify - title: yay - skipped: false - failed: false - Schedule[never]: !ruby/object:Puppet::Resource::Status - resource: Schedule[never] - file: - line: - change_count: 0 - out_of_sync_count: 0 - tags: - - schedule - - never - time: 2012-11-09 15:39:29.266601 +00:00 - events: [] - out_of_sync: false - changed: false - resource_type: Schedule - title: never - skipped: true - failed: false - Schedule[weekly]: !ruby/object:Puppet::Resource::Status - resource: Schedule[weekly] - file: - line: - change_count: 0 - out_of_sync_count: 0 - tags: - - schedule - - weekly - time: 2012-11-09 15:39:29.268075 +00:00 - events: [] - out_of_sync: false - changed: false - resource_type: Schedule - title: weekly - skipped: true - failed: false - Schedule[puppet]: !ruby/object:Puppet::Resource::Status - resource: Schedule[puppet] - file: - line: - change_count: 0 - out_of_sync_count: 0 - tags: - - schedule - - puppet - time: 2012-11-09 15:39:29.268353 +00:00 - events: [] - out_of_sync: false - changed: false - resource_type: Schedule - title: puppet - skipped: true - failed: false - Schedule[daily]: !ruby/object:Puppet::Resource::Status - resource: Schedule[daily] - file: - line: - change_count: 0 - out_of_sync_count: 0 - tags: - - schedule - - daily - time: 2012-11-09 15:39:29.256512 +00:00 - events: [] - out_of_sync: false - changed: false - resource_type: Schedule - title: daily - skipped: true - failed: false - Schedule[hourly]: !ruby/object:Puppet::Resource::Status - resource: Schedule[hourly] - file: - line: - change_count: 0 - out_of_sync_count: 0 - tags: - - schedule - - hourly - time: 2012-11-09 15:39:29.257131 +00:00 - events: [] - out_of_sync: false - changed: false - resource_type: Schedule - title: hourly - skipped: true - failed: false - status: changed - puppet_version: "3.0.1" - metrics: - time: !ruby/object:Puppet::Util::Metric - name: time - label: Time - values: - - - notify - - Notify - - 0.0019 - - - config_retrieval - - "Config retrieval" - - 0.389333963394165 - - - total - - Total - - 0.391449963394165 - - - filebucket - - Filebucket - - 0.000216 - resources: !ruby/object:Puppet::Util::Metric - name: resources - label: Resources - values: - - - failed - - Failed - - 0 - - - changed - - Changed - - 1 - - - scheduled - - Scheduled - - 0 - - - total - - Total - - 8 - - - restarted - - Restarted - - 0 - - - failed_to_restart - - "Failed to restart" - - 0 - - - out_of_sync - - "Out of sync" - - 1 - - - skipped - - Skipped - - 6 - events: !ruby/object:Puppet::Util::Metric - name: events - label: Events - values: - - - failure - - Failure - - 0 - - - total - - Total - - 1 - - - success - - Success - - 1 - changes: !ruby/object:Puppet::Util::Metric - name: changes - label: Changes - values: - - - total - - Total - - 1 - host: puppetmaster.vm1 - environment: production diff --git a/spec/unit/foreman_external_node_spec.rb b/spec/unit/foreman_external_node_spec.rb deleted file mode 100644 index 123d6edee..000000000 --- a/spec/unit/foreman_external_node_spec.rb +++ /dev/null @@ -1,95 +0,0 @@ -require 'rbconfig' -require 'spec_helper' -require 'yaml' -require 'tempfile' - -class Enc - settings = Tempfile.new('foreman.yaml') - settings.write(<<-EOF) ---- -:url: "http://localhost:3000" -:facts: true -:puppet_home: "/var/lib/puppet" - EOF - settings.close - $settings_file = settings.path - eval File.read(File.join(File.dirname(__FILE__), '../..', 'files', 'external_node_v2.rb')) -end - -describe 'foreman_external_node' do - # Get our ruby - let(:enc) { Enc.new } - - it "should connect to the URL in the manifest" do - webstub = stub_request(:post, "http://localhost:3000/api/hosts/facts").with(:body => {"fake"=>"data"}) - - expect(enc).to receive(:stat_file).with('fake.host.fqdn.com-push-facts').exactly(5).times.and_return("/tmp/fake.host.fqdn.com-push-facts.yaml") - # first :exists? call is for 'push-facts'; second one for fixture facts - allow(File).to receive(:exists?).and_return(false, true) - allow(File).to receive(:stat).and_return(double(:mtime => Time.now.utc)) - expect(enc).to receive(:build_body).and_return({'fake' => 'data'}) - - req = enc.generate_fact_request('fake.host.fqdn.com',"#{static_fixture_path}/fake.host.fqdn.com.yaml") - enc.upload_facts('fake.host.fqdn.com',req) - expect(webstub).to have_been_requested - - # test pushing facts async - http_fact_requests = [] - http_fact_requests << ['fake.host.fqdn.com', req] - enc.upload_facts_parallel(http_fact_requests) - - expect(webstub).to have_been_requested.times(2) - - http_fact_requests << ['fake.host.fqdn.com', req] - http_fact_requests << ['fake.host.fqdn.com', req] - enc.upload_facts_parallel(http_fact_requests) - - expect(webstub).to have_been_requested.times(4) - end - - it "should not generate fact request when facts file is missing" do - expect(enc).to receive(:stat_file).with('fake.host.fqdn.com-push-facts').and_return("/tmp/fake.host.fqdn.com-push-facts.yaml") - # first :exists? call is for 'push-facts'; second one for non-existent facts - allow(File).to receive(:exists?).and_return(false) - allow(File).to receive(:stat).and_return(double(:mtime => Time.now.utc)) - - req = enc.generate_fact_request('fake.host.fqdn.com','non-existent-facts.yaml') - expect(req).to be_nil - end - - it "should have the correct certname and hostname" do - # fake2 does not appear in the fixture, so we know it - # must be preferring the passed-in certname from ARGV - hash = enc.build_body('fake2.host.fqdn.com',"#{static_fixture_path}/fake.host.fqdn.com.yaml") - expect(hash['certname']).to eql 'fake2.host.fqdn.com' - expect(hash['name']).to eql 'fake.host.fqdn.com' - expect(hash['facts']).to be_a(Hash) - end - - describe 'quote_macs!' do - require_relative '../../files/external_node_v2.rb' - it 'quotes macs that need quoting' do - yaml = "---\n macaddress: 52:54:00:44:49:56\n" - quote_macs! yaml - expect(yaml).to eql "---\n macaddress: '52:54:00:44:49:56'\n" - end - it "doesn't modify quoted macs" do - yaml = "---\n macaddress: '52:54:00:44:49:56'\n" - result = yaml - quote_macs! result - expect(yaml).to eql result - end - it 'only looks for mac addresses at the end of lines' do - yaml = "---\n foo: 52:54:00:44:49:56 isn't something we're going to modify\n" - result = yaml - quote_macs! result - expect(yaml).to eql result - end - it 'ignores mac addresses that couldn\'t be interpreted as base 60' do - yaml = "---\n macaddress: 52:54:FF:44:49:56\n" - result = yaml - quote_macs! result - expect(yaml).to eql result - end - end -end diff --git a/spec/unit/foreman_report_processor_spec.rb b/spec/unit/foreman_report_processor_spec.rb deleted file mode 100644 index 054eb8d7e..000000000 --- a/spec/unit/foreman_report_processor_spec.rb +++ /dev/null @@ -1,125 +0,0 @@ -require 'rbconfig' -require 'spec_helper' -require 'yaml' -require 'tempfile' - -describe 'foreman_report_processor' do - settings = Tempfile.new('foreman.yaml') - settings.write(<<-EOF) ---- -:url: "http://localhost:3000" -:facts: true -:puppet_home: "/var/lib/puppet" -:report_retry_limit: 2 - EOF - settings.close - $settings_file = settings.path - eval File.read(File.join(File.dirname(__FILE__), '../..', 'files', 'foreman-report_v2.rb')) - let(:processor) { Puppet::Reports.report(:foreman) } - - describe "making a connection" do - subject { YAML.load_file("#{static_fixture_path}/report-format-3.yaml").extend(processor) } - it "should connect to the URL in the processor" do - stub = stub_request(:post, "http://localhost:3000/api/config_reports") - subject.process - expect(stub).to have_been_requested - end - end - - describe "retry on failed connection" do - subject { YAML.load_file("#{static_fixture_path}/report-format-3.yaml").extend(processor) } - - it "should retry the URL in the processor" do - stub = stub_request(:post, "http://localhost:3000/api/config_reports").to_timeout().then().to_return({status: [200, 'OK']}) - expect { subject.process }.not_to raise_error - expect(stub).to have_been_requested.times(2) - end - - it "should give up after the configured retries" do - stub = stub_request(:post, "http://localhost:3000/api/config_reports").to_timeout() - expect { subject.process }.to raise_error(Puppet::Error, /Could not send report to Foreman at/) - expect(stub).to have_been_requested.times(2) - end - end - - describe "Puppet Report Format 2" do - subject { YAML.load_file("#{static_fixture_path}/report-format-2.yaml").extend(processor) } - it { - expect(subject.generate_report).to eql(JSON.parse(File.read("#{static_fixture_path}/report-format-2.json"))) - } - end - - describe "Puppet Report Format 3" do - subject { YAML.load_file("#{static_fixture_path}/report-format-3.yaml").extend(processor) } - it { - expect(subject.generate_report).to eql(JSON.parse(File.read("#{static_fixture_path}/report-format-3.json"))) - } - end - - describe "Puppet Report Format 6" do - subject { YAML.load_file("#{static_fixture_path}/report-format-6.yaml").extend(processor) } - it { - expect(subject.generate_report).to eql(JSON.parse(File.read("#{static_fixture_path}/report-format-6.json"))) - } - end - - describe "report should support failure metrics" do - subject { YAML.load_file("#{static_fixture_path}/report-2.6.5-errors.yaml").extend(processor) } - it { - expect(subject.generate_report['status']['failed']).to eql 3 - } - end - - describe "report should not support noops" do - subject { YAML.load_file("#{static_fixture_path}/report-2.6.12-noops.yaml").extend(processor) } - it { - expect(subject.generate_report['status']['pending']).to eql 10 - } - end - - describe "empty reports have the correct format" do - subject { YAML.load_file("#{static_fixture_path}/report-empty.yaml").extend(processor) } - it { - expect(subject.generate_report).to eql(JSON.parse(File.read("#{static_fixture_path}/report-empty.json"))) - } - end - - describe "report should not include finished_catalog_run messages" do - subject { YAML.load_file("#{static_fixture_path}/report-2.6.12-noops.yaml").extend(processor) } - it { - expect(subject.generate_report['logs'].map { |l| l['log']['messages']['message']}.to_s).not_to match /Finished catalog run in/ - } - end - - describe "report should not include debug level messages" do - subject { YAML.load_file("#{static_fixture_path}/report-2.6.2-debug.yaml").extend(processor) } - it { - expect(subject.generate_report['logs'].map { |l| l['log']['level']}.to_s).not_to match /debug/ - } - end - - describe "report should show failure metrics for failed catalog fetches" do - subject { YAML.load_file("#{static_fixture_path}/report-3.5.1-catalog-errors.yaml").extend(processor) } - it { - expect(subject.generate_report['status']['failed']).to eql 1 - } - end - - describe "report should properly bypass log processor changes" do - subject { YAML.load_file("#{static_fixture_path}/report-log-preprocessed.yaml").extend(processor) } - it { - expect(subject.generate_report['status']['failed']).to eql 1 - } - end - - # TODO: check debug logs are filtered - - # Normally we wouldn't include commented code, but this is a handy way - # of seeing what the report processor generates for a given YAML input - # - #describe "foo" do - # subject { YAML.load_file("#{yamldir}/report-format-1.yaml").extend(processor) } - # it { puts JSON.pretty_generate(subject.generate_report) } - #end - -end