Offhand, does anyone know the difference between the 2
constructs below to manage secondary groups ?
This is the 'groupadd' provider I think (CentOS).
Think I'd prefer the  former if the result is the same
(I create these users in a definition and it's simpler to not touch it).


group { "foo":
   members => [ "eeny", "meeny", "miney" ]
}

and

user { "eeny":
  ...
  groups => ["foo"]
  ...
}

user { "meeny":
  ...
  groups => ["foo"]
  ...
}
user { "miney":
  ...
  groups => ["foo"]
  ...
}

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To post to this group, send email to puppet-us...@googlegroups.com.
To unsubscribe from this group, send email to 
puppet-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/puppet-users?hl=en.

Reply via email to