Displaying 1 result from an estimated 1 matches for "thunka".
Did you mean:
thunk
2013 Apr 11
3
puppet-lint -- learning stuff about style but also generating questions
Here''s one I learned:
I originally had
# Ensure /etc/hosts contains the basics
host { "${fqdn}":
host_aliases => $hostname,
ip => $ipaddress,
}
And thru some trial and error, got down to this (which puppet-lint does not gripe about)
# Ensure /etc/hosts contains the basics
host { $fqdn:
host_aliases => $hostname,
ip => $ipaddress,
}