diff options
author | Luke Kanies <luke@reductivelabs.com> | 2010-01-07 13:08:50 -0800 |
---|---|---|
committer | test branch <puppet-dev@googlegroups.com> | 2010-02-17 06:50:53 -0800 |
commit | 67ef78d9f231661d0fdd6260d470cf0d06f1bac2 (patch) | |
tree | 0fd49958832f3da98476c36fb9d8e4160f95873e /lib/puppet/application/main.rb | |
parent | b82b4ef04282ca0006931562f60459a1591b6268 (diff) | |
download | puppet-67ef78d9f231661d0fdd6260d470cf0d06f1bac2.tar.gz puppet-67ef78d9f231661d0fdd6260d470cf0d06f1bac2.tar.xz puppet-67ef78d9f231661d0fdd6260d470cf0d06f1bac2.zip |
Removing Interpreter class
It's no longer necessary, given the new ResourceTypeCollection
class.
Signed-off-by: Luke Kanies <luke@reductivelabs.com>
Diffstat (limited to 'lib/puppet/application/main.rb')
-rw-r--r-- | lib/puppet/application/main.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/puppet/application/main.rb b/lib/puppet/application/main.rb index 5eab81ae6..3813df612 100644 --- a/lib/puppet/application/main.rb +++ b/lib/puppet/application/main.rb @@ -72,7 +72,7 @@ Puppet::Application.new(:main) do Puppet[:manifest] = ARGV.shift end begin - Puppet::Parser::Interpreter.new.parser(Puppet[:environment]) + Puppet::Parser::ResourceTypeCollection.new(Puppet[:environment]).perform_initial_import rescue => detail Puppet.err detail exit 1 |