summaryrefslogtreecommitdiffstats
path: root/lib/puppet
diff options
context:
space:
mode:
authorLuke Kanies <luke@madstop.com>2009-02-13 21:12:16 -0600
committerJames Turnbull <james@lovedthanlost.net>2009-02-14 22:42:51 +1100
commita2eca6c8a1c69244426b077c5775a1cdbdae2d57 (patch)
tree2697ceb438ca777351d9b11a46837192920444f5 /lib/puppet
parentcb0a083a4c7447d6da2f6a1ce6725cedeb831db1 (diff)
downloadpuppet-a2eca6c8a1c69244426b077c5775a1cdbdae2d57.tar.gz
puppet-a2eca6c8a1c69244426b077c5775a1cdbdae2d57.tar.xz
puppet-a2eca6c8a1c69244426b077c5775a1cdbdae2d57.zip
Removing some unused code
Signed-off-by: Luke Kanies <luke@madstop.com>
Diffstat (limited to 'lib/puppet')
-rw-r--r--lib/puppet/indirector/catalog/compiler.rb11
1 files changed, 0 insertions, 11 deletions
diff --git a/lib/puppet/indirector/catalog/compiler.rb b/lib/puppet/indirector/catalog/compiler.rb
index aba53bff8..83b636433 100644
--- a/lib/puppet/indirector/catalog/compiler.rb
+++ b/lib/puppet/indirector/catalog/compiler.rb
@@ -125,17 +125,6 @@ class Puppet::Resource::Catalog::Compiler < Puppet::Indirector::Code
end
end
- # Translate our catalog appropriately for sending back to a client.
- # LAK:FIXME This method should probably be part of the protocol, but it
- # shouldn't be here.
- def translate(config)
- unless networked?
- config
- else
- CGI.escape(config.to_yaml(:UseBlock => true))
- end
- end
-
# Mark that the node has checked in. LAK:FIXME this needs to be moved into
# the Node class, or somewhere that's got abstract backends.
def update_node_check(node)