Displaying 2 results from an estimated 2 matches for "ssh_know_host".
Did you mean:
ssh_know_hosts
2010 Nov 15
2
bug with using exported resources?
...r by design?
I''m using exported resources to generate /etc/ssh/ssh_known_hosts. I
changed the example from the docs to this:
@@sshkey {
"$fqdn,$hostname,$ipaddress": type => rsa,
key => $sshrsakey,
}
so that I would get one line per host in the ssh_know_hosts file. What
happened was that on each run several (all?) keys exported would be
re-added. At one point I counted 34 duplicate entries. I changed the
module to:
@@sshkey {
"$fqdn": type => rsa,
key => $sshrsakey,
}
@@sshkey {
"$hostname":...
2012 Dec 01
0
sshkey and server with HashKnowHosts set
Hey list,
Not sure if something has been posted about it but I didn''t find any post
after research,
I''d like to define an entry in my /etc/ssh/ssh_know_hosts using sshkey
resource.
After a run it does insert an entry there, but the issue is that I have the
HashKnownHosts flag set on my configuration file and that Puppet generate a
plain unencrypted entry for the ssh_known_hosts file. So the first time I
am trying to connect I still get the Unknown...