summaryrefslogtreecommitdiffstats
path: root/lib/puppet/network/http.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/puppet/network/http.rb')
-rw-r--r--lib/puppet/network/http.rb24
1 files changed, 12 insertions, 12 deletions
diff --git a/lib/puppet/network/http.rb b/lib/puppet/network/http.rb
index ee6b70422..512055b63 100644
--- a/lib/puppet/network/http.rb
+++ b/lib/puppet/network/http.rb
@@ -1,15 +1,15 @@
module Puppet::Network::HTTP
- def self.server_class_by_type(kind)
- case kind.to_sym
- when :webrick
- require 'puppet/network/http/webrick'
- return Puppet::Network::HTTP::WEBrick
- when :mongrel
- raise ArgumentError, "Mongrel is not installed on this platform" unless Puppet.features.mongrel?
- require 'puppet/network/http/mongrel'
- return Puppet::Network::HTTP::Mongrel
- else
- raise ArgumentError, "Unknown HTTP server name [#{kind}]"
- end
+ def self.server_class_by_type(kind)
+ case kind.to_sym
+ when :webrick
+ require 'puppet/network/http/webrick'
+ return Puppet::Network::HTTP::WEBrick
+ when :mongrel
+ raise ArgumentError, "Mongrel is not installed on this platform" unless Puppet.features.mongrel?
+ require 'puppet/network/http/mongrel'
+ return Puppet::Network::HTTP::Mongrel
+ else
+ raise ArgumentError, "Unknown HTTP server name [#{kind}]"
end
+ end
end