blob: 9b03cb3c54b67d5126d07b4ba0481ac6b73c3e35 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh
cat <<EOF 1>&2
*
* If you want OpenSSH server to look up user's public keys in LDAP,
* add the following lines to /etc/ssh/sshd_config and reload sshd:
*
* AuthorizedKeysCommand /usr/bin/ssh-getkey-ldap
* AuthorizedKeysCommandUser nobody
*
EOF
exit 0
|