search for: home_group

Displaying 3 results from an estimated 3 matches for "home_group".

Did you mean: some_group
2007 Aug 16
0
No subject
...$uid, $pgroup, $groups, $fullname, $homefs, $shell ) { # This case component will allow us to avoid a dependency when/if we attempt # to disable the account by passing ensure => absent case $ensure { present: { $home_owner = $name $home_group = $pgroup } default: { $home_owner = "root" $home_group = "root" } } user { $name: ensure => $ensure, uid => $uid, gid => $pgroup, groups => $groups,...
2007 Aug 22
12
Virtual resource not found
Hi All, I asked on IRC but didn''t have everything organized and most people seemed busy. Hoping someone can see what I''m missing here. I''m trying to create a network module, used similar to the ''users'' configuration described in the Best Practices document. I have a users module which has that and it works with similar syntax to below. If I
2007 Mar 16
0
HOWTO: Overcoming home directory''s dependency on owner element when disabling user accounts
Background info: https://reductivelabs.com/trac/puppet/ticket/549 Here''s how I''m working around the issue now... case $ensure { present: { $home_owner = $name $home_group = $name } default: { $home_owner = "root" $home_group = "root" } } file { "/home/$name": owner => $home_owner,...