mirror of git://anongit.mindrot.org/openssh.git
- (djm) Bug #629: Mark ssh_config option "pamauthenticationviakbdint"
as deprecated. Remove mention from README.privsep. Patch from aet AT cc.hut.fi
This commit is contained in:
parent
36ca53a5a0
commit
30912f7259
|
@ -1,3 +1,8 @@
|
||||||
|
20030826
|
||||||
|
- (djm) Bug #629: Mark ssh_config option "pamauthenticationviakbdint"
|
||||||
|
as deprecated. Remove mention from README.privsep. Patch from
|
||||||
|
aet AT cc.hut.fi
|
||||||
|
|
||||||
20030825
|
20030825
|
||||||
- (djm) Bug #621: Select OpenSC keys by usage attributes. Patch from
|
- (djm) Bug #621: Select OpenSC keys by usage attributes. Patch from
|
||||||
larsch@trustcenter.de
|
larsch@trustcenter.de
|
||||||
|
@ -869,4 +874,4 @@
|
||||||
- Fix sshd BindAddress and -b options for systems using fake-getaddrinfo.
|
- Fix sshd BindAddress and -b options for systems using fake-getaddrinfo.
|
||||||
Report from murple@murple.net, diagnosis from dtucker@zip.com.au
|
Report from murple@murple.net, diagnosis from dtucker@zip.com.au
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.2905 2003/08/25 05:01:04 dtucker Exp $
|
$Id: ChangeLog,v 1.2906 2003/08/26 00:48:14 djm Exp $
|
||||||
|
|
|
@ -40,8 +40,7 @@ Compression will be disabled on systems without a working mmap MAP_ANON.
|
||||||
|
|
||||||
PAM-enabled OpenSSH is known to function with privsep on Linux.
|
PAM-enabled OpenSSH is known to function with privsep on Linux.
|
||||||
It does not function on HP-UX with a trusted system
|
It does not function on HP-UX with a trusted system
|
||||||
configuration. PAMAuthenticationViaKbdInt does not function with
|
configuration.
|
||||||
privsep.
|
|
||||||
|
|
||||||
On Compaq Tru64 Unix, only the pre-authentication part of privsep is
|
On Compaq Tru64 Unix, only the pre-authentication part of privsep is
|
||||||
supported. Post-authentication privsep is disabled automatically (so
|
supported. Post-authentication privsep is disabled automatically (so
|
||||||
|
@ -62,4 +61,4 @@ process 1005 is the sshd process listening for new connections.
|
||||||
process 6917 is the privileged monitor process, 6919 is the user owned
|
process 6917 is the privileged monitor process, 6919 is the user owned
|
||||||
sshd process and 6921 is the shell process.
|
sshd process and 6921 is the shell process.
|
||||||
|
|
||||||
$Id: README.privsep,v 1.11 2003/03/21 01:18:09 mouring Exp $
|
$Id: README.privsep,v 1.12 2003/08/26 00:48:15 djm Exp $
|
||||||
|
|
|
@ -270,10 +270,11 @@ static struct {
|
||||||
} keywords[] = {
|
} keywords[] = {
|
||||||
/* Portable-specific options */
|
/* Portable-specific options */
|
||||||
#ifdef USE_PAM
|
#ifdef USE_PAM
|
||||||
{ "UsePAM", sUsePAM },
|
{ "usepam", sUsePAM },
|
||||||
#else
|
#else
|
||||||
{ "UsePAM", sUnsupported },
|
{ "usepam", sUnsupported },
|
||||||
#endif
|
#endif
|
||||||
|
{ "pamauthenticationviakbdint", sDeprecated },
|
||||||
/* Standard Options */
|
/* Standard Options */
|
||||||
{ "port", sPort },
|
{ "port", sPort },
|
||||||
{ "hostkey", sHostKeyFile },
|
{ "hostkey", sHostKeyFile },
|
||||||
|
|
Loading…
Reference in New Issue