blob: 1daf29f9a6e83631fdec6a406ac2aaab65e6ee19 [file] [log] [blame]
Darren Tuckere0194e52003-06-22 12:33:27 +10001# $OpenBSD: reconfigure.sh,v 1.2 2003/06/21 09:14:05 markus Exp $
Darren Tuckerfc8a7ea2003-06-18 22:18:57 +10002# Placed in the Public Domain.
3
4tid="simple connect after reconfigure"
5
6# we need the full path to sshd for -HUP
Darren Tucker871f7402003-09-04 13:59:48 +10007case $SSHD in
8/*)
9 # full path is OK
10 ;;
11*)
12 # otherwise make fully qualified
13 SSHD=$OBJ/$SSHD
14esac
Darren Tuckerfc8a7ea2003-06-18 22:18:57 +100015
16start_sshd
17
Darren Tuckercb6ecde2005-11-12 21:30:07 +110018PID=`cat $PIDFILE`
19rm -f $PIDFILE
20$SUDO kill -HUP $PID
Darren Tuckerfc8a7ea2003-06-18 22:18:57 +100021
22trace "wait for sshd to restart"
23i=0;
24while [ ! -f $PIDFILE -a $i -lt 10 ]; do
25 i=`expr $i + 1`
26 sleep $i
27done
28
29test -f $PIDFILE || fatal "sshd did not restart"
30
31for p in 1 2; do
32 ${SSH} -o "Protocol=$p" -F $OBJ/ssh_config somehost true
33 if [ $? -ne 0 ]; then
34 fail "ssh connect with protocol $p failed after reconfigure"
35 fi
36done