From: Silvio Rhatto Date: Tue, 28 Sep 2010 02:16:50 +0000 (-0300) Subject: Fixing parameters at hosts class X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=28532b40731bb14906a82c6fe9c68faa99a28e8d;p=puppet-nodo.git Fixing parameters at hosts class --- diff --git a/manifests/subsystems/hosts.pp b/manifests/subsystems/hosts.pp index c669c76..afa8854 100644 --- a/manifests/subsystems/hosts.pp +++ b/manifests/subsystems/hosts.pp @@ -1,8 +1,8 @@ class hosts { host { "$hostname": - ensure => present, - ip => "$ipaddress", - alias => [ "$fqdn" ], + ensure => present, + ip => "$ipaddress", + host_aliases => [ "$fqdn" ], } host { "localhost": @@ -11,9 +11,9 @@ class hosts { } host { "ip6-localhost": - ensure => present, - ip => "::1", - alias => [ "ip6-loopback" ], + ensure => present, + ip => "::1", + host_aliases => [ "ip6-loopback" ], } host { "ip6-localnet":