In most Linux distributions, if there are multiple entries for a host in
/etc/hosts the first entry has precedence. With the Puppet host resource,
if there are multiple entries for that name, Puppet will modify the last
entry.
So if a system has a /etc/hosts file with the following entries
Is there an issue with using subscribe? So in my virtual resource
definition I have:
define accounts::virtual ($uid,$realname,$pass) {
user { $title:
ensure=> 'present',
uid => $uid,
gid => $title,
shell => '/bin/bash',