On Nov 12, 2:35 am, Peter Meier <peter.me...@immerda.ch> wrote:
> > 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.
>
> do exists, means that you have an actual file-resource managing it? If
> not then you should have one, otherwise you can't specify a relationship.

Hi, Pete. Thank you for your help. I believe the line in definitions/
account manages the /home/username/.ssh/authorized_keys structure. It
looks like this (unmodified from the recipe posted to the Puppet
recipes page):

file {
        "${homeroot}/$name":
            ensure  => directory,
            owner   => $home_owner,
            group   => $home_group,
            mode    => 750,
            require => User[$name];
        "${homeroot}/$name/.ssh":
            ensure  => directory,
            owner   => $home_owner,
            group   => $home_group,
            mode    => 700,
            require => File["${homeroot}/$name"];
        "${homeroot}/$name/.ssh/authorized_keys":
            ensure  => present,
            owner   => "root",
            group   => "root",
            mode    => 644,
            require => File["${homeroot}/$name/.ssh"];
        "${homeroot}/$name/.ssh/authorized_keys2":
            ensure  => "${homeroot}/$name/.ssh/authorized_keys",
            require => File["${homeroot}/$name/.ssh/authorized_keys"],
    }

> Are you using 0.25? Then you might also hit a current bug where traling
> slashes are stripped of but not in relationships. So you might want to
> change File["${homeroot}/$name/"], to File["${homeroot}/$name"],

I am using puppet 0.24.8 as packaged with Ubuntu 9.10. I did try
playing with the trailing slash prior to emailing the list and it
didn't seem to matter (and I guess it shouldn't if the bug was in
0.25.)

  -Adam

--~--~---------~--~----~------------~-------~--~----~
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