From 7c859a7dd72eeddc6364708077862ca8ed40eee7 Mon Sep 17 00:00:00 2001 From: Luke Kanies Date: Thu, 23 Jul 2009 22:42:20 -0700 Subject: Fixing #2399 - removing client-side rrd graphs This feature has been broken since who knows when, yet no one's noticed. Thus, it's a good candidate for removal. Signed-off-by: Luke Kanies --- lib/puppet/defaults.rb | 1 - lib/puppet/transaction.rb | 4 ---- 2 files changed, 5 deletions(-) (limited to 'lib') diff --git a/lib/puppet/defaults.rb b/lib/puppet/defaults.rb index 4fb8bfeba..877e2b209 100644 --- a/lib/puppet/defaults.rb +++ b/lib/puppet/defaults.rb @@ -445,7 +445,6 @@ module Puppet Directories for each reporting host will be created under this directory." }, - :rrdgraph => [false, "Whether RRD information should be graphed."], :rrdinterval => ["$runinterval", "How often RRD should expect data. This should match how often the hosts report back to the server."], :strict_hostname_checking => [false, "Whether to only search for the complete diff --git a/lib/puppet/transaction.rb b/lib/puppet/transaction.rb index ea283d8bb..c0b4c0e65 100644 --- a/lib/puppet/transaction.rb +++ b/lib/puppet/transaction.rb @@ -508,10 +508,6 @@ class Transaction return end - if Puppet[:rrdgraph] == true - report.graph() - end - if Puppet[:summarize] puts report.summary end -- cgit