more script updates, added peerstats cleanup
[wyse_ntpd.git] / src / buildroot-2013.05 / custom / filesystem / opt / stats_daemon.sh
index ab35d57..a5b9e1e 100755 (executable)
@@ -1,8 +1,13 @@
 #!/bin/sh
+
+cldate=`date '+%s'`
        
 while(true)
 do
        date '+%s' >> /var/www/data/ntp.log.$cldate
        ntpq -c lpe -n |grep "127.127.20" >> /var/www/data/ntp.log.$cldate
+
+       find /var/www/data/stats -mtime +2 -type f -exec rm {} \;
+
        sleep 30
 done