Displaying 2 results from an estimated 2 matches for "ssh_auth".
Did you mean:
sshd_auth
2012 Aug 17
5
Hiera, Hashes, and Create_resources
...ver-a''s value. How do I do that?
Also, interestingly, it printed out each of the server names (keys?)
in the hash but the value of the server-a''s sshd_auth entry.
My YAML, puppet manifest and error follow.
# cat common.yaml
---
searchdomain : ''example.com''
ssh_auth : ldap
servers :
server-a :
sshd_auth: "local"
ClientAliveInterval: "nil"
ClientAliveCountMax: "nil"
server-b :
sshd_auth: "local"...
2013 Apr 30
3
[Bug 2095] New: ssh client not respecting IdentitiesOnly=yes option
...d the same behaviour. Downloaded
the latest 6.2p1, recompiled it and found the latest version still
exhibited this issue.
Further investigations finally have shown that user was authenticated
through its ssh agent keys even though it was requested not to use them
(IdentitiesOnly option). Unsetting SSH_AUTH prior to calling ssh would
make it to prove it.
Since i had downloaded and recompiled the 6.2p1 code, i looked at the
source code and found the issue was likely in pubkey_prepare inside
sshconnect2.c in which identities_only option is tested a bit too late.
I provided a unified diff as a suggested...