Permalink
Browse files

Merge branch 'master' into 2.8.x

  • Loading branch information...
richardc committed Jan 23, 2015
2 parents 7047664 + e6c5428 commit 925d2874616bc816f8ec4a8a8137fab0a41fe039
Showing with 10 additions and 2 deletions.
  1. +10 −2 plugins/mcollective/application/facts.rb
@@ -38,14 +38,22 @@ def main
begin
value = resp[:body][:data][:value]
if value
facts.include?(value) ? facts[value] << resp[:senderid] : facts[value] = [ resp[:senderid] ]
if facts.include?(value)
facts[value] << resp[:senderid]
else
facts[value] = [ resp[:senderid] ]
end
end
rescue Exception => e
STDERR.puts "Could not parse facts for #{resp[:senderid]}: #{e.class}: #{e}"
end
end
show_single_fact_report(configuration[:fact], facts, options[:verbose])
if facts.empty?
puts "No values found for fact #{configuration[:fact]}\n"
else
show_single_fact_report(configuration[:fact], facts, options[:verbose])
end
printrpcstats

0 comments on commit 925d287

Please sign in to comment.