Hello. I am configuring my puppetmaster with the authorized_keys
management recipe from the recipes repository on the Puppet site. So
far, it does what it should *except* generate a keypair for new users,
and I'm unsure of how to proceed from here. Any suggestions would be
greatly appreciated.

I have used the recipe as-is from 
http://reductivelabs.com/trac/puppet/wiki/Recipes/Authorized_keys

 Adding one user ("newguy" in this example), my puppet client produces
the following debug output:

a...@platform2:~$ sudo puppetd --server platform2 --test --verbose --
debug --waitforcert 60
debug: Creating default schedules
<snipped unrelated output>
debug: Creating default schedules
warning: Not using cache on failed catalog
warning: Configuration could not be instantiated: Could not find
dependency File[/home/newguy/] for Exec[Building /home/newguy/.ssh/
authorized_keys] at /etc/puppet/manifests/definitions/sshkeygen:37

Which seems odd because the user's account and home directory do
exist. In this example, the puppet client and puppetmaster are the
same machine. I can reproduce the problem with a second machine as the
client, as well.

definitions/sshkeygen lines 31-37 contain:

exec { "Building $authorized_keys":
        command   => "cp $public_key $authorized_keys",
        creates   => $authorized_keys,
        subscribe => File[$public_key],
        require   => [ User[$name], File[$public_key], File["$
{homeroot}/$name/"], File["${homeroot}/$name/.ssh"] ],
    }


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
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