diff options
-rwxr-xr-x | testing/do-tests.in | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/testing/do-tests.in b/testing/do-tests.in index 3204b844c..7dbb5487a 100755 --- a/testing/do-tests.in +++ b/testing/do-tests.in @@ -631,6 +631,17 @@ do </tr> @EOF + + ########################################################################## + # remove any charon.pid files that still may exist + # + + for host in $IPSECHOSTS + do + eval HOSTLOGIN=root@\$ipv4_${host} + ssh $HOSTLOGIN 'if [ -f /var/run/charon.pid ]; then rm /var/run/charon.pid; echo " removed charon.pid on `hostname`"; fi' + done + done done |