On Fri, 31 May 2013 15:56:30 -0700 (PDT)
Marek Dohojda <chro...@gmail.com> wrote:

> Having weird issue that I can't seem to find any solution to:
> 
> puppet 2.7.21 and 2.6.9
> 
> here is my stanza: ssh_authorized_key{ “$name”:
> 
>               ensure => present,
>               name => "$name",
>               key => "$key",
>               type => $type,
>               user => "$name",
>               require => File["$myhome/.ssh"]
> 
> }

a common pitfall is that name contains spaces (at least trailing spaces
should cause issues) or that people specify the key parameter as
something like "ssh-rsa  AAAAB3NzaC1kc3MAAA" while instead you have to
specify "AAAAB3NzaC1kc3MAAA" as the key and "ssh-rsa" as the type.

So does `$key` contain any spaces? Does `$name` contain any trailing
spaces?

Can you please post one of the entries that is filling up
your /var/log/messages?

-Stefan

-- 
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, send email to puppet-users@googlegroups.com.
Visit this group at http://groups.google.com/group/puppet-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to