aboutsummaryrefslogtreecommitdiff
path: root/lib/puppet/type/host.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/puppet/type/host.rb')
-rw-r--r--lib/puppet/type/host.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/puppet/type/host.rb b/lib/puppet/type/host.rb
index e348969..52f0e87 100644
--- a/lib/puppet/type/host.rb
+++ b/lib/puppet/type/host.rb
@@ -1,6 +1,10 @@
require 'puppet/property/ordered_list'
Puppet::Type.newtype(:host) do
+ @doc = "Installs and manages host entries. For most systems, these
+ entries will just be in `/etc/hosts`, but some systems (notably OS X)
+ will have different solutions."
+
ensurable
newproperty(:ip) do
@@ -90,8 +94,4 @@ Puppet::Type.newtype(:host) do
raise Puppet::Error, _('Hostname cannot include newline') if value =~ %r{\n} || value =~ %r{\r}
end
end
-
- @doc = "Installs and manages host entries. For most systems, these
- entries will just be in `/etc/hosts`, but some systems (notably OS X)
- will have different solutions."
end