diff options
Diffstat (limited to 'testing/do-tests.in')
-rwxr-xr-x | testing/do-tests.in | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/testing/do-tests.in b/testing/do-tests.in index 2c5c07278..67c2e7ad6 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 <ul> <li><a href="$host.clients.conf">clients.conf</a></li> <li><a href="$host.radiusd.conf">radiusd.conf</a></li> + <li><a href="$host.strongswan.conf">strongswan.conf</a></li> </ul> </td> <td valign="top"> <ul> <li><a href="$host.eap.conf">eap.conf</a></li> <li><a href="$host.radius.log">radius.log</a></li> + <li><a href="$host.daemon.log">daemon.log</a></li> </ul> </td> <td valign="top"> @@ -644,6 +649,18 @@ do ########################################################################## + # 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 # |