mirror of
git://anongit.mindrot.org/openssh.git
synced 2024-11-24 02:02:10 +08:00
- [regress/reconfigure/sh] Make path to sshd fully qualified if required.
This commit is contained in:
parent
5569759bce
commit
871f7408ab
@ -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 $
|
||||
|
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user