1
0
Fork 0
openssh/regress/agent-subprocess.sh
Daniel Baumann f4a1000be6
Adding upstream version 1:10.0p1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-21 09:50:01 +02:00

22 lines
517 B
Bash

# $OpenBSD: agent-subprocess.sh,v 1.1 2020/06/19 05:07:09 dtucker Exp $
# Placed in the Public Domain.
tid="agent subprocess"
trace "ensure agent exits when run as subprocess"
${SSHAGENT} sh -c "echo \$SSH_AGENT_PID >$OBJ/pidfile; sleep 1"
pid=`cat $OBJ/pidfile`
# Currently ssh-agent polls every 10s so we need to wait at least that long.
n=12
while kill -0 $pid >/dev/null 2>&1 && test "$n" -gt "0"; do
n=$(($n - 1))
sleep 1
done
if test "$n" -eq "0"; then
fail "agent still running"
fi
rm -f $OBJ/pidfile