- (dtucker) [openbsd-compat/port-linux.c] Check is_selinux_enabled for exact
[openssh-git.git] / regress / reconfigure.sh
blob9fd2895314e479a6f35a9f2c9a8b34e5f66fe23e
1 # $OpenBSD: reconfigure.sh,v 1.2 2003/06/21 09:14:05 markus Exp $
2 # Placed in the Public Domain.
4 tid="simple connect after reconfigure"
6 # we need the full path to sshd for -HUP
7 case $SSHD in
8 /*)
9 # full path is OK
12 # otherwise make fully qualified
13 SSHD=$OBJ/$SSHD
14 esac
16 start_sshd
18 PID=`$SUDO cat $PIDFILE`
19 rm -f $PIDFILE
20 $SUDO kill -HUP $PID
22 trace "wait for sshd to restart"
23 i=0;
24 while [ ! -f $PIDFILE -a $i -lt 10 ]; do
25 i=`expr $i + 1`
26 sleep $i
27 done
29 test -f $PIDFILE || fatal "sshd did not restart"
31 for 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"
36 done