From cc638338500245c3d5b4a6beb47eccfd50548949 Mon Sep 17 00:00:00 2001 From: Paul J R Date: Thu, 2 Jan 2014 02:53:38 +1100 Subject: [PATCH] more script updates, added peerstats cleanup --- .../custom/filesystem/opt/stats_daemon.sh | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) 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 -- 1.7.0.4