X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=modules%2Fhosts%2Fmanifests%2Finit.pp;h=e7bb587a32ae5bbe38946870a6fc937be550f023;hb=f50a3a803d19af29ca27e271b193cbddcad5f92e;hp=279da0f48842ea3db8bee3513060682b7d145970;hpb=79b064ca9b0e6a77eed810ce41c66a3d594a0996;p=mirror%2Fdsa-puppet.git diff --git a/modules/hosts/manifests/init.pp b/modules/hosts/manifests/init.pp index 279da0f48..e7bb587a3 100644 --- a/modules/hosts/manifests/init.pp +++ b/modules/hosts/manifests/init.pp @@ -1,7 +1,13 @@ +# = Class: hosts +# +# This class fixes up broken /etc/hosts files +# +# == Sample Usage: +# +# include hosts +# class hosts { - - file { - "/etc/hosts": content => template("hosts/etc-hosts.erb"); - } + file { '/etc/hosts': + content => template('hosts/etc-hosts.erb') + } } -