- [regress/reconfigure/sh] Make path to sshd fully qualified if required.

This commit is contained in:
Darren Tucker 2003-09-04 13:59:48 +10:00
parent 5569759bce
commit 871f7408ab
2 changed files with 10 additions and 2 deletions

View File

@ -6,6 +6,7 @@
getpeereid.
- [regress/agent-ptrace.sh] Skip tests if platform doesn't support it or
gdb cannot be found.
- [regress/reconfigure/sh] Make path to sshd fully qualified if required.
20030903
- (djm) OpenBSD CVS Sync
@ -996,4 +997,4 @@
- Fix sshd BindAddress and -b options for systems using fake-getaddrinfo.
Report from murple@murple.net, diagnosis from dtucker@zip.com.au
$Id: ChangeLog,v 1.2944 2003/09/04 03:55:25 dtucker Exp $
$Id: ChangeLog,v 1.2945 2003/09/04 03:59:48 dtucker Exp $

View File

@ -4,7 +4,14 @@
tid="simple connect after reconfigure"
# we need the full path to sshd for -HUP
SSHD=/usr/sbin/sshd
case $SSHD in
/*)
# full path is OK
;;
*)
# otherwise make fully qualified
SSHD=$OBJ/$SSHD
esac
start_sshd