diff options
| author | Luke Kanies <luke@madstop.com> | 2008-02-29 12:00:39 -0600 |
|---|---|---|
| committer | Luke Kanies <luke@madstop.com> | 2008-02-29 12:00:39 -0600 |
| commit | 4c3fa7806d12f86fce01030aa5e3745e698cb3c0 (patch) | |
| tree | c2dd3a9fafb2da8c109ba3d107a9e3eef811f004 /lib | |
| parent | 857814ac80cf4f0c9913ccb6d2d42355670ea64f (diff) | |
| download | puppet-4c3fa7806d12f86fce01030aa5e3745e698cb3c0.tar.gz puppet-4c3fa7806d12f86fce01030aa5e3745e698cb3c0.tar.xz puppet-4c3fa7806d12f86fce01030aa5e3745e698cb3c0.zip | |
Fixing a few more loading order issues.
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/puppet.rb | 1 | ||||
| -rw-r--r-- | lib/puppet/network.rb | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/lib/puppet.rb b/lib/puppet.rb index 18037cdc1..57f84d5f7 100644 --- a/lib/puppet.rb +++ b/lib/puppet.rb @@ -423,6 +423,7 @@ module Puppet end require 'puppet/type' +require 'puppet/network' require 'puppet/module' require 'puppet/util/storage' require 'puppet/parser/interpreter' diff --git a/lib/puppet/network.rb b/lib/puppet/network.rb new file mode 100644 index 000000000..8993b8869 --- /dev/null +++ b/lib/puppet/network.rb @@ -0,0 +1,3 @@ +# Just a stub, so we can correctly scope other classes. +module Puppet::Network # :nodoc: +end |
