diff options
author | dtucker@openbsd.org <dtucker@openbsd.org> | 2016-12-16 01:06:27 +0000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2016-12-16 13:16:34 +1100 |
commit | 2f2ffa4fbe4b671bbffa0611f15ba44cff64d58e (patch) | |
tree | e23577a9aadfbaed15dccfcd289f74ac542d3397 /regress/test-exec.sh | |
parent | e15e7152331e3976b35475fd4e9c72897ad0f074 (diff) | |
download | openssh-git-2f2ffa4fbe4b671bbffa0611f15ba44cff64d58e.tar.gz |
upstream commit
Move the "stop sshd" code into its own helper function.
Patch from Zev Weiss <zev at bewilderbeest.net>, ok djm@
Upstream-Regress-ID: a113dea77df5bd97fb4633ea31f3d72dbe356329
Diffstat (limited to 'regress/test-exec.sh')
-rw-r--r-- | regress/test-exec.sh | 25 |
1 files changed, 15 insertions, 10 deletions
diff --git a/regress/test-exec.sh b/regress/test-exec.sh index 5d48706d..bfa48803 100644 --- a/regress/test-exec.sh +++ b/regress/test-exec.sh @@ -1,4 +1,4 @@ -# $OpenBSD: test-exec.sh,v 1.57 2016/11/25 03:02:01 dtucker Exp $ +# $OpenBSD: test-exec.sh,v 1.58 2016/12/16 01:06:27 dtucker Exp $ # Placed in the Public Domain. #SUDO=sudo @@ -293,16 +293,8 @@ md5 () { } # End of portable specific functions -# helper -cleanup () +stop_sshd () { - if [ "x$SSH_PID" != "x" ]; then - if [ $SSH_PID -lt 2 ]; then - echo bad pid for ssh: $SSH_PID - else - kill $SSH_PID - fi - fi if [ -f $PIDFILE ]; then pid=`$SUDO cat $PIDFILE` if [ "X$pid" = "X" ]; then @@ -325,6 +317,19 @@ cleanup () fi } +# helper +cleanup () +{ + if [ "x$SSH_PID" != "x" ]; then + if [ $SSH_PID -lt 2 ]; then + echo bad pid for ssh: $SSH_PID + else + kill $SSH_PID + fi + fi + stop_sshd +} + start_debug_log () { echo "trace: $@" >$TEST_REGRESS_LOGFILE |