search for: home_owner

Displaying 4 results from an estimated 4 matches for "home_owner".

Did you mean: home_owner2
2007 Aug 16
0
No subject
...users_account ( $ensure, $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,...
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":...
2012 Sep 11
1
Plotting every probability curve
I don't have a logistic regression model and am trying to generate probability curves for all possible combinations of the variables. My logit model has 5+ variables, and I want to draw curves for every scenario. See code below. When home_owner is 0 and 1, I want curves. The same goes for all other variables categories, so that I have permutations for all possible combinations. I've found that I can use the TeachingDemos package (see below) to construct a gui which makes this easier, but I want to form curve separately so that I can...