[Puppet Users] Issue with host resource type

2023-12-12 Thread William Thomas
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

[Puppet Users] Re: Puppet User Administration, set password only at creating of user-accounts

2014-05-12 Thread William Thomas
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',