Re: [Puppet Users] Solaris useradd uses /export/home and not /home

2013-09-13 Thread jcbollinger
On Friday, September 13, 2013 3:12:20 AM UTC-5, Andreas Dvorak wrote: > > I forgot: Yes the init.pp file is the one I use. > And you can confirm that by changing that user declaration and seeing the corresponding change in the catalog delivered to the client? If the User declaration you are l

Re: [Puppet Users] Solaris useradd uses /export/home and not /home

2013-09-13 Thread Andreas Dvorak
Hi John, the catalog file in RH6 is fine with "home":"/home/user1" and the user is created in /home/user1 That problem seems to be complicate. Andreas -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To unsubscribe from this group and stop re

Re: [Puppet Users] Solaris useradd uses /export/home and not /home

2013-09-13 Thread jcbollinger
On Friday, September 13, 2013 3:10:10 AM UTC-5, Andreas Dvorak wrote: > > Hi John, > > I can see that it does use the provider user_role_add, but there seems to > be a problem. > > Debug: /User[user1]: Provider user_role_add does not support features > libuser; not managing attribute forcelocal

Re: [Puppet Users] Solaris useradd uses /export/home and not /home

2013-09-13 Thread Andreas Dvorak
I forgot: Yes the init.pp file is the one I use. -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-users+unsubscr...@googlegroups.com. To post to this group

Re: [Puppet Users] Solaris useradd uses /export/home and not /home

2013-09-13 Thread Andreas Dvorak
Hi John, I can see that it does use the provider user_role_add, but there seems to be a problem. Debug: /User[user1]: Provider user_role_add does not support features libuser; not managing attribute forcelocal I get the same message when I run it on RedHat 6. In the catalog file I find this {

Re: [Puppet Users] Solaris useradd uses /export/home and not /home

2013-09-09 Thread jcbollinger
On Friday, September 6, 2013 8:07:24 AM UTC-5, Andreas Dvorak wrote: > > Hi Dick, > > thank you for the help, but it did not change anythink. The error mesage > stays exactly the same. > > Puppet ignores the setting of the home variable. > > Now I have created the missing home directory in /expo

Re: [Puppet Users] Solaris useradd uses /export/home and not /home

2013-09-06 Thread Andreas Dvorak
Hi Dick, thank you for the help, but it did not change anythink. The error mesage stays exactly the same. Puppet ignores the setting of the home variable. Now I have created the missing home directory in /export and the user is created, but in the wrong directory. Best regards Andreas -- Yo

Re: [Puppet Users] Solaris useradd uses /export/home and not /home

2013-09-06 Thread Dick Davies
/export/home and /home are odd on solarises. what you could try is managehome => false and create the directory itself with puppet. file { "/home/$username": ensure => directory, } On 6 September 2013 12:43, Andreas Dvorak wrote: > Dear all > > I have puppet 3.2 running and have a mo

[Puppet Users] Solaris useradd uses /export/home and not /home

2013-09-06 Thread Andreas Dvorak
Dear all I have puppet 3.2 running and have a module to install user. On Linx user are created in /home but on Solaris it wants to create them in /export/home. I don't understand why. class admin_user::group { group { "baaderadm": gid => "888", ensure => present, } } class ad