diff --git a/testing/do-tests.in b/testing/do-tests.in
index 2c5c07278d..67c2e7ad6c 100755
--- a/testing/do-tests.in
+++ b/testing/do-tests.in
@@ -556,6 +556,9 @@ do
$TESTRESULTDIR/${host}.$file > /dev/null 2>&1
done
+ scp $SSHCONF $HOSTLOGIN:/etc/strongswan.conf \
+ $TESTRESULTDIR/${host}.strongswan.conf > /dev/null 2>&1
+
scp $SSHCONF $HOSTLOGIN:/var/log/radius/radius.log \
$TESTRESULTDIR/${host}.radius.log > /dev/null 2>&1
@@ -568,12 +571,14 @@ do
|
@@ -643,6 +648,18 @@ do
done
+ ##########################################################################
+ # get a copy of /var/log/daemon.log
+ #
+
+ for host in $RADIUSHOSTS
+ do
+ eval HOSTLOGIN=root@\$ipv4_${host}
+ ssh $SSHCONF $HOSTLOGIN grep imcv /var/log/daemon.log \
+ >> $TESTRESULTDIR/${host}.daemon.log
+ done
+
+
##########################################################################
# stop tcpdump if necessary
#
diff --git a/testing/scripts/load-testconfig b/testing/scripts/load-testconfig
index 0e167e8e23..43100dbe0a 100755
--- a/testing/scripts/load-testconfig
+++ b/testing/scripts/load-testconfig
@@ -63,12 +63,12 @@ done
##########################################################################
-# clear radius.log on FreeRadius servers
+# clear radius.log and daemon.log on FreeRadius servers
#
for host in $RADIUSHOSTS
do
eval HOSTLOGIN="root@`echo $HOSTNAMEIPV4 | sed -n -e "s/^.*${host},//gp" | awk -F, '{ print $1 }' | awk '{ print $1 }'`"
- ssh $SSHCONF $HOSTLOGIN 'rm -f /var/log/radius/radius.log; \
+ ssh $SSHCONF $HOSTLOGIN 'rm -f /var/log/radius/radius.log /var/log/daemon.log; \
kill -SIGHUP `cat /var/run/syslogd.pid`' > /dev/null 2>&1
done
|