Re: [Puppet Users] realizing virtual resource does not match on default properties

2013-04-30 Thread Calvin Walton
On Tue, 2013-04-30 at 06:45 -0700, Schofield wrote: > Given a class that defines multiple virtual users with common properties > defined in the User class: > > class users{ > User{ > gid => 2000, > shell => "/bin/bash", > managehome => "true", > password => 'XrU4ZYu0nwk7s', >

[Puppet Users] realizing virtual resource does not match on default properties

2013-04-30 Thread Schofield
Given a class that defines multiple virtual users with common properties defined in the User class: class users{ User{ gid => 2000, shell => "/bin/bash", managehome => "true", password => 'XrU4ZYu0nwk7s', require => Group['mygroup'], } @user{ 'user1': uid => 1690,