From: Paul J R Date: Wed, 1 Jan 2014 15:53:38 +0000 (+1100) Subject: more script updates, added peerstats cleanup X-Git-Url: http://git.pjr.cc/?p=wyse_ntpd.git;a=commitdiff_plain;h=cc638338500245c3d5b4a6beb47eccfd50548949 more script updates, added peerstats cleanup --- diff --git a/src/buildroot-2013.05/custom/filesystem/opt/stats_daemon.sh b/src/buildroot-2013.05/custom/filesystem/opt/stats_daemon.sh index ab35d57..a5b9e1e 100755 --- a/src/buildroot-2013.05/custom/filesystem/opt/stats_daemon.sh +++ b/src/buildroot-2013.05/custom/filesystem/opt/stats_daemon.sh @@ -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