- dtucker@cvs.openbsd.org 2008/06/09 18:06:32
[regress/test-exec.sh] Don't generate putty keys if we're not going to use them. ok djm
This commit is contained in:
parent
e7f3f75651
commit
d788b7cb35
|
@ -26,6 +26,9 @@
|
|||
- update usage()
|
||||
- fix SYNOPSIS, and sort options
|
||||
- some minor additional fixes
|
||||
- dtucker@cvs.openbsd.org 2008/06/09 18:06:32
|
||||
[regress/test-exec.sh]
|
||||
Don't generate putty keys if we're not going to use them. ok djm
|
||||
|
||||
20080609
|
||||
- (dtucker) OpenBSD CVS Sync
|
||||
|
@ -4112,4 +4115,4 @@
|
|||
OpenServer 6 and add osr5bigcrypt support so when someone migrates
|
||||
passwords between UnixWare and OpenServer they will still work. OK dtucker@
|
||||
|
||||
$Id: ChangeLog,v 1.4953 2008/06/10 13:06:01 dtucker Exp $
|
||||
$Id: ChangeLog,v 1.4954 2008/06/10 13:15:54 dtucker Exp $
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# $OpenBSD: test-exec.sh,v 1.31 2007/12/21 04:13:53 djm Exp $
|
||||
# $OpenBSD: test-exec.sh,v 1.32 2008/06/09 18:06:32 dtucker Exp $
|
||||
# Placed in the Public Domain.
|
||||
|
||||
#SUDO=sudo
|
||||
|
@ -287,9 +287,10 @@ for t in rsa rsa1; do
|
|||
done
|
||||
chmod 644 $OBJ/authorized_keys_$USER
|
||||
|
||||
# If PuTTY is present, prepare keys and configuration
|
||||
# If PuTTY is present and we are running a PuTTY test, prepare keys and
|
||||
# configuration
|
||||
REGRESS_INTEROP_PUTTY=no
|
||||
if test -x "$PUTTYGEN" -a -x "$PLINK" ; then
|
||||
if test -x $PUTTYGEN -a -x $PLINK && [[ $SCRIPT = *putty* ]] ; then
|
||||
mkdir -p ${OBJ}/.putty
|
||||
|
||||
# Add a PuTTY key to authorized_keys
|
||||
|
|
Loading…
Reference in New Issue