Re: [Puppet Users] Re: RHEL/Oracle Linux - user creation.

2013-01-02 Thread Garrett Honeycutt
On 12/30/12 9:47 PM, Mike Rochford wrote: > It looks like I need to file a bug report as Oracle change the name of > their linux distribution. > > > def check_manage_home > cmd = [] > if @resource.managehome? > cmd << "-m" > elsif %w{Fedora RedHat CentOS OEL > OVS}.include?(Fact

Re: [Puppet Users] Re: RHEL/Oracle Linux - user creation.

2012-12-30 Thread Mike Rochford
It looks like I need to file a bug report as Oracle change the name of their linux distribution. def check_manage_home cmd = [] if @resource.managehome? cmd << "-m" elsif %w{Fedora RedHat CentOS OEL OVS}.include?(Facter.value(:operatingsystem)) cmd << "-M" end cmd

RE: [Puppet Users] Re: RHEL/Oracle Linux - user creation.

2012-12-28 Thread John Guthrie
Also make certain that your shadow-utils package is up to date. Older package version had an issue where they didn't allow puppet to handle non-local user names very well. If your home directories are on a NAS, then I suspect that you might be running into a similar issue as well. I found tha