summaryrefslogtreecommitdiffstats
path: root/lib/puppet/parser/ast
diff options
context:
space:
mode:
authorluke <luke@980ebf18-57e1-0310-9a29-db15c13687c0>2006-02-16 19:10:34 +0000
committerluke <luke@980ebf18-57e1-0310-9a29-db15c13687c0>2006-02-16 19:10:34 +0000
commit1fdb96266e2d1a083e1ecc76c5ae136ba73f2999 (patch)
treed600505c4b15bb699c9531903e6647102292a697 /lib/puppet/parser/ast
parent5f8d61553a9d83087604fe5b68146503cf55d1be (diff)
downloadpuppet-1fdb96266e2d1a083e1ecc76c5ae136ba73f2999.tar.gz
puppet-1fdb96266e2d1a083e1ecc76c5ae136ba73f2999.tar.xz
puppet-1fdb96266e2d1a083e1ecc76c5ae136ba73f2999.zip
Changing transactions to be one-stage instead of two, and changing most of the type classes to use "obj[:name]" instead of "obj.name" where appropriate, because "obj.name" might be a symbolic name (e.g., File.unlink(file.name) will not do what you want if file.name == "sshdconfig" but file[:path] == "/etc/ssh/sshd_config")
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@922 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'lib/puppet/parser/ast')
-rw-r--r--lib/puppet/parser/ast/node.rb1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/puppet/parser/ast/node.rb b/lib/puppet/parser/ast/node.rb
index 79fdd50d7..2e33eb672 100644
--- a/lib/puppet/parser/ast/node.rb
+++ b/lib/puppet/parser/ast/node.rb
@@ -48,7 +48,6 @@ class Puppet::Parser::AST
# Evaluate our parent class.
def evalparent(scope)
if @parentclass
- Puppet.warning "evaluating parent %s" % @parentclass
# This is pretty messed up. I don't know if this will
# work in the long term, but we need to evaluate the node
# in our own scope, even though our parent node has