From 61027d5f3d3cbba567bbf148dc49d513a900dd99 Mon Sep 17 00:00:00 2001 From: Thomas Hochstein Date: Sat, 31 May 2025 18:33:33 +0200 Subject: [PATCH] Add clientstats to dopostingstats. Signed-off-by: Thomas Hochstein --- contrib/dopostingstats.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/contrib/dopostingstats.sh b/contrib/dopostingstats.sh index 13147b2..c0e5e8c 100644 --- a/contrib/dopostingstats.sh +++ b/contrib/dopostingstats.sh @@ -3,6 +3,7 @@ if [[ $1 =~ [0-9]{4}-[0-9]{2} ]]; then /srv/newsstats/bin/groupstats.pl --nocomments --sums --format dump --month $1 | /srv/newsstats/bin/postingstats.pl --month $1 | /srv/newsstats/contrib/tinews.pl -X -Y /srv/newsstats/bin/hoststats.pl --nocomments --sums --format dump --month $1 | /srv/newsstats/bin/postingstats.pl -t server --month $1 | /srv/newsstats/contrib/tinews.pl -X -Y + /srv/newsstats/bin/clientstats.pl --nocomments --sums --versions --format dump --month $1 | /srv/newsstats/bin/postingstats.pl -t client --month $1 | /srv/newsstats/contrib/tinews.pl -X -Y else echo 'Input error, please use dopostingstats.sh YYYY-MM' fi