summaryrefslogtreecommitdiff
path: root/regress/reconfigure.sh
diff options
context:
space:
mode:
authormarkus@openbsd.org <markus@openbsd.org>2015-01-14 09:54:38 +0000
committerDamien Miller <djm@mindrot.org>2015-01-15 21:39:17 +1100
commit6c43b48b307c41cd656b415621a644074579a578 (patch)
treec89ff60661e2cf4117f5595816b2c7f9855d8024 /regress/reconfigure.sh
parent771bb47a1df8b69061f09462e78aa0b66cd594bf (diff)
upstream commit
don't reset to the installed sshd; connect before reconfigure, too
Diffstat (limited to 'regress/reconfigure.sh')
-rw-r--r--regress/reconfigure.sh11
1 files changed, 10 insertions, 1 deletions
diff --git a/regress/reconfigure.sh b/regress/reconfigure.sh
index 9fd289531..ba6648bf4 100644
--- a/regress/reconfigure.sh
+++ b/regress/reconfigure.sh
@@ -1,4 +1,4 @@
1# $OpenBSD: reconfigure.sh,v 1.2 2003/06/21 09:14:05 markus Exp $ 1# $OpenBSD: reconfigure.sh,v 1.3 2015/01/14 09:54:38 markus Exp $
2# Placed in the Public Domain. 2# Placed in the Public Domain.
3 3
4tid="simple connect after reconfigure" 4tid="simple connect after reconfigure"
@@ -15,6 +15,14 @@ esac
15 15
16start_sshd 16start_sshd
17 17
18trace "connect before restart"
19for p in 1 2; do
20 ${SSH} -o "Protocol=$p" -F $OBJ/ssh_config somehost true
21 if [ $? -ne 0 ]; then
22 fail "ssh connect with protocol $p failed before reconfigure"
23 fi
24done
25
18PID=`$SUDO cat $PIDFILE` 26PID=`$SUDO cat $PIDFILE`
19rm -f $PIDFILE 27rm -f $PIDFILE
20$SUDO kill -HUP $PID 28$SUDO kill -HUP $PID
@@ -28,6 +36,7 @@ done
28 36
29test -f $PIDFILE || fatal "sshd did not restart" 37test -f $PIDFILE || fatal "sshd did not restart"
30 38
39trace "connect after restart"
31for p in 1 2; do 40for p in 1 2; do
32 ${SSH} -o "Protocol=$p" -F $OBJ/ssh_config somehost true 41 ${SSH} -o "Protocol=$p" -F $OBJ/ssh_config somehost true
33 if [ $? -ne 0 ]; then 42 if [ $? -ne 0 ]; then