$Id: README,v 1.2 2004/02/21 14:41:38 akorty Exp $

This PAM module provides single sign-on behavior for SSH.  The user
types an SSH passphrase when logging in (probably to GDM, KDM, or XDM)
and is authenticated if the passphrase successfully decrypts the
user's SSH private key.  In the PAM session phase, an ssh-agent
process is started and keys are added.  For the entire session, the
user can SSH to other hosts that accept key authentication without
typing any passwords.

http://sourceforge.net/projects/pam-ssh/

NOTE:
-----

This is not an official distribution. It contains a patch to support
Solaris. More information can be found here:
http://fearthecow.net/guest/pam_ssh-on-solaris

Solaris 10 Installation
-----------------------

1. Install automake, autoconf and libtool (I use the CSW versions).
2. export MAKE=gmake
3. Run: ./bootstrap.sh && ./configure && make && make install
4. Configure /etc/pam.conf, for example, by adding:

login  auth sufficient         pam_ssh.so try_first_pass

immediately after:

login   auth requisite          pam_authtok_get.so.1

And by adding:

other	auth sufficient         pam_ssh.so try_first_pass

immediately after:

other	auth requisite          pam_authtok_get.so.1

5. You should be right to try logging in with an SSH key.
