display configuration and log of FreeRadius servers

This commit is contained in:
Andreas Steffen
2010-09-02 22:19:37 +02:00
parent ef0a8e5892
commit f9cfb5c836
2 changed files with 54 additions and 0 deletions
+12
View File
@@ -60,3 +60,15 @@ do
ssh $HOSTLOGIN 'rm -f /var/log/auth.log /var/log/daemon.log; \
kill -SIGHUP `cat /var/run/syslogd.pid`' > /dev/null 2>&1
done
##########################################################################
# clear radius.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 $HOSTLOGIN 'rm -f /var/log/radius/radius.log; \
kill -SIGHUP `cat /var/run/syslogd.pid`' > /dev/null 2>&1
done