On Monday, July 2, 2012 2:24:15 PM UTC-5, Brian Gupta wrote:
>
> On Mon, Jul 2, 2012 at 11:10 AM, nikosd23 <nikos...@gmail.com> wrote: 
> > Hi, 
> > 
> > I am trying to set the password for a user that I have created using the 
> > puppet provisioner of Vagrant for a Linux version 2.6.32-71.el6.x86_64 
> Red 
> > Hat 4.4.4-13 box. 
> > 
> > I have tried both approaches: 
> > 
> > Approach1 
> > user { "test": 
> >     ensure   => present, 
> >     shell    => "/bin/bash", 
> >     password => "encrypted_password_generated_by_passwd_command", 
> >     managehome => true, 
> > } 
>
> This is the approach I would take, but you need libshadow-ruby 
> installed for it to work. 
>

Also, it's a good idea to use single quotes around the password hash 
instead of double quotes.  Password hashes have an unfortunate tendency to 
include '$' characters, which Puppet will tend to try to interpret as a 
variable reference except when the string is single-quoted.

In fact, it's a good idea to always use single quotes in your Puppet 
manifests except where you specifically want variable interpolation.


John

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/puppet-users/-/-CMO2v9TEqcJ.
To post to this group, send email to puppet-users@googlegroups.com.
To unsubscribe from this group, send email to 
puppet-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/puppet-users?hl=en.

Reply via email to