]> andersk Git - openssh.git/blame - regress/reconfigure.sh
- fgsch@cvs.openbsd.org 2004/12/10 01:31:30
[openssh.git] / regress / reconfigure.sh
CommitLineData
63a556df 1# $OpenBSD: reconfigure.sh,v 1.2 2003/06/21 09:14:05 markus Exp $
1d6c0b69 2# Placed in the Public Domain.
3
4tid="simple connect after reconfigure"
5
6# we need the full path to sshd for -HUP
c4cc19d5 7case $SSHD in
8/*)
9 # full path is OK
10 ;;
11*)
12 # otherwise make fully qualified
13 SSHD=$OBJ/$SSHD
14esac
1d6c0b69 15
16start_sshd
17
63a556df 18$SUDO kill -HUP `cat $PIDFILE`
1d6c0b69 19sleep 1
20
21trace "wait for sshd to restart"
22i=0;
23while [ ! -f $PIDFILE -a $i -lt 10 ]; do
24 i=`expr $i + 1`
25 sleep $i
26done
27
28test -f $PIDFILE || fatal "sshd did not restart"
29
30for p in 1 2; do
31 ${SSH} -o "Protocol=$p" -F $OBJ/ssh_config somehost true
32 if [ $? -ne 0 ]; then
33 fail "ssh connect with protocol $p failed after reconfigure"
34 fi
35done
This page took 0.096306 seconds and 5 git commands to generate.