summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorLuke Kanies <luke@madstop.com>2008-02-29 12:00:39 -0600
committerLuke Kanies <luke@madstop.com>2008-02-29 12:00:39 -0600
commit4c3fa7806d12f86fce01030aa5e3745e698cb3c0 (patch)
treec2dd3a9fafb2da8c109ba3d107a9e3eef811f004 /lib
parent857814ac80cf4f0c9913ccb6d2d42355670ea64f (diff)
downloadpuppet-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.rb1
-rw-r--r--lib/puppet/network.rb3
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