diff options
| author | Luke Kanies <luke@madstop.com> | 2007-08-22 21:39:21 -0500 |
|---|---|---|
| committer | Luke Kanies <luke@madstop.com> | 2007-08-22 21:39:21 -0500 |
| commit | b599862fc85c968676799edde865a96faa66a75b (patch) | |
| tree | d6236652a2780c0cd42552b29f369b961eaeb008 /lib | |
| parent | fb3bfa57d892bd3398fb1434ca9914bb8a7c3b50 (diff) | |
| download | puppet-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.rb | 2 |
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 |
