diff options
| author | Luke Kanies <luke@madstop.com> | 2005-08-18 19:36:47 +0000 |
|---|---|---|
| committer | Luke Kanies <luke@madstop.com> | 2005-08-18 19:36:47 +0000 |
| commit | 4741eeff6bae987c9dfa9e06e2908ae91daa4d16 (patch) | |
| tree | bd7ec692c4c2f429f03176cc9e8cfb34f30453cb /lib/puppet/transportable.rb | |
| parent | 63309c3b40b7e7f6f46692e0b4b2c780fc806737 (diff) | |
| download | puppet-4741eeff6bae987c9dfa9e06e2908ae91daa4d16.tar.gz puppet-4741eeff6bae987c9dfa9e06e2908ae91daa4d16.tar.xz puppet-4741eeff6bae987c9dfa9e06e2908ae91daa4d16.zip | |
Execution order is now based on dependency relationships, and those relationships correctly propagate up and descend into components. There is also an event test suite now, along with a (currently simple) component test suite.
git-svn-id: https://reductivelabs.com/svn/puppet/library/trunk@565 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'lib/puppet/transportable.rb')
| -rw-r--r-- | lib/puppet/transportable.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/puppet/transportable.rb b/lib/puppet/transportable.rb index cf4a4629c..1adaeafe1 100644 --- a/lib/puppet/transportable.rb +++ b/lib/puppet/transportable.rb @@ -105,7 +105,7 @@ module Puppet else Puppet.debug "%s has no parameters" % @name end - container = Puppet::Component.new(hash) + container = Puppet::Type::Component.new(hash) nametable = {} self.each { |child| |
