summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorLuke Kanies <luke@madstop.com>2007-08-22 21:39:21 -0500
committerLuke Kanies <luke@madstop.com>2007-08-22 21:39:21 -0500
commitb599862fc85c968676799edde865a96faa66a75b (patch)
treed6236652a2780c0cd42552b29f369b961eaeb008 /lib
parentfb3bfa57d892bd3398fb1434ca9914bb8a7c3b50 (diff)
downloadpuppet-b599862fc85c968676799edde865a96faa66a75b.tar.gz
puppet-b599862fc85c968676799edde865a96faa66a75b.tar.xz
puppet-b599862fc85c968676799edde865a96faa66a75b.zip
Fixing the integration test between interpreter and configuration -- the interpreter was not passing on that the config should use ast nodes
Diffstat (limited to 'lib')
-rw-r--r--lib/puppet/parser/interpreter.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/puppet/parser/interpreter.rb b/lib/puppet/parser/interpreter.rb
index e37ef5efe..fa90838f0 100644
--- a/lib/puppet/parser/interpreter.rb
+++ b/lib/puppet/parser/interpreter.rb
@@ -63,7 +63,7 @@ class Puppet::Parser::Interpreter
def compile(node)
parsefiles()
- return Puppet::Parser::Configuration.new(node, @parser).compile
+ return Puppet::Parser::Configuration.new(node, @parser, :ast_nodes => @usenodes).compile
end
private