[Puppet Users] Re: Ubuntu 12.04 adding user with password

2013-03-17 Thread loxo
I think what you are doing will work, but calling the resource with a require rather than including it as another class may be more elegant. Something like: class hadoop::usr ($usr_name = 'hadoop', $hashed_pw = undef) { package {'libshadow-ruby1.8': ensure = installed, } group { $usr_name:

[Puppet Users] Re: Ubuntu 12.04 adding user with password

2013-03-14 Thread Vivek Gupta
Hi , I am facing the same error, were you able to get it working ? cheers. On Monday, August 6, 2012 11:33:05 PM UTC+5:30, Aaron Masino wrote: Hi All, I am trying to using Puppet to add a user with a password on an Ubuntu 12.04 system with Ruby 1.8.7. I have tried this in the two ways as