Attention is currently required from: flichtenheld, mattock, plaisthos.
Hello cron2, flichtenheld, plaisthos,
I'd like you to reexamine a change. Please visit
http://gerrit.openvpn.net/c/openvpn/+/775?usp=email
to look at the new patch set (#2).
Change subject: t_server_null: forcibly kill misbehaving servers
......................................................................
t_server_null: forcibly kill misbehaving servers
Change-Id: Ic0f98cd3b87a7b86e032e63167ac9036f7c08fcb
Signed-off-by: Samuli Seppänen <[email protected]>
---
M tests/t_server_null_server.sh
1 file changed, 8 insertions(+), 1 deletion(-)
git pull ssh://gerrit.openvpn.net:29418/openvpn refs/changes/75/775/2
diff --git a/tests/t_server_null_server.sh b/tests/t_server_null_server.sh
index 10bb44b..5fab897 100755
--- a/tests/t_server_null_server.sh
+++ b/tests/t_server_null_server.sh
@@ -87,6 +87,7 @@
continue
fi
+ # Attempt to kill the OpenVPN server gracefully with SIGTERM
if [ -z "${RUN_SUDO}" ]; then
$KILL_EXEC "${SERVER_PID}"
else
@@ -102,7 +103,13 @@
sleep 0.2
done
+ # If server is still up send a SIGKILL
if [ $count -ge $maxcount ]; then
- echo "WARNING: could not kill server with pid ${SERVER_PID}!"
+ if [ -z "${RUN_SUDO}" ]; then
+ $KILL_EXEC -9 "${SERVER_PID}"
+ else
+ $RUN_SUDO $KILL_EXEC -9 "${SERVER_PID}"
+ fi
+ echo "WARNING: had to send SIGKILL to server with pid ${SERVER_PID}!"
fi
done
--
To view, visit http://gerrit.openvpn.net/c/openvpn/+/775?usp=email
To unsubscribe, or for help writing mail filters, visit
http://gerrit.openvpn.net/settings
Gerrit-Project: openvpn
Gerrit-Branch: master
Gerrit-Change-Id: Ic0f98cd3b87a7b86e032e63167ac9036f7c08fcb
Gerrit-Change-Number: 775
Gerrit-PatchSet: 2
Gerrit-Owner: mattock <[email protected]>
Gerrit-Reviewer: cron2 <[email protected]>
Gerrit-Reviewer: flichtenheld <[email protected]>
Gerrit-Reviewer: plaisthos <[email protected]>
Gerrit-CC: openvpn-devel <[email protected]>
Gerrit-Attention: plaisthos <[email protected]>
Gerrit-Attention: flichtenheld <[email protected]>
Gerrit-Attention: mattock <[email protected]>
Gerrit-MessageType: newpatchset
_______________________________________________
Openvpn-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/openvpn-devel