2011-03-12 03:43:54 +01:00
|
|
|
|
#!/bin/sh
|
|
|
|
|
|
2012-04-17 00:31:15 +02:00
|
|
|
|
# $Id: memo,v 1.41 2012/02/04 23:55:37 gilles Exp gilles $
|
2011-03-12 03:43:54 +01:00
|
|
|
|
|
|
|
|
|
software_version() {
|
|
|
|
|
|
|
|
|
|
VERSION=`cat VERSION`
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2011-03-12 03:45:02 +01:00
|
|
|
|
statistics_lfo() {
|
2011-03-12 03:45:04 +01:00
|
|
|
|
# 62.147.165.21 - - [31/Oct/2010:23:45:28 +0100] "GET /prj/imapsync/VERSION HTTP/1.0" 200 6 "-" "imapsync/1.368 (linux system, perl 5.8.8, Mail::IMAPClient 2.2.9 imapsync)"
|
2011-03-12 03:45:02 +01:00
|
|
|
|
#grep prj/imapsync/VERSION /usr/local/apache/logs/access_log | sort -n | cut -d ' ' -f 1,12,13|uniq -c | sort -n # list ip
|
|
|
|
|
|
|
|
|
|
cat <<EOFF
|
2011-09-25 22:31:48 +02:00
|
|
|
|
ssh glamiral@linux-france.org "grep -h prj/imapsync/VERSION /usr/local/apache/logs/access_log.bak|cut -d ' ' -f 1,12,13,18,19|sort -n|uniq -c|sort -n" # list ip
|
|
|
|
|
ssh glamiral@linux-france.org "grep -h prj/imapsync/VERSION /usr/local/apache/logs/access_log.bak|cut -d ' ' -f 1,12,13,18,19|sort -n|uniq -c|sort -n |grep MSWin32" # Win32
|
2011-03-12 03:45:02 +01:00
|
|
|
|
|
2011-09-25 22:31:48 +02:00
|
|
|
|
ssh glamiral@linux-france.org "grep -h prj/imapsync/VERSION /usr/local/apache/logs/access_log.bak|cut -d ' ' -f 13,18,19 |sort -n|uniq -c| sort -n" # OS usage+basename
|
|
|
|
|
ssh glamiral@linux-france.org "grep -h prj/imapsync/VERSION /usr/local/apache/logs/access_log.bak|cut -d ' ' -f 12 |sort -n|uniq -c| sort -n" # imapsync release
|
2012-04-17 00:26:18 +02:00
|
|
|
|
ssh glamiral@linux-france.org "grep -h prj/imapsync/VERSION /usr/local/apache/logs/access_log.bak|cut -d ' ' -f 1,12,13,18,19|sort -n|uniq -c|sort -n|wc -l" # count ip
|
|
|
|
|
ssh glamiral@linux-france.org "grep -h prj/imapsync/VERSION /usr/local/apache/logs/access_log.bak|wc -l" # imapsync runs
|
2011-03-12 03:45:02 +01:00
|
|
|
|
|
|
|
|
|
|
2011-09-25 22:31:48 +02:00
|
|
|
|
tail -f /usr/local/apache/logs/access_log|cat -n|grep prj/imapsync/VERSION|cat -n |grep VERSION # lfo frequency
|
2011-03-12 03:45:02 +01:00
|
|
|
|
EOFF
|
|
|
|
|
}
|
|
|
|
|
|
2012-04-17 00:26:18 +02:00
|
|
|
|
statistics_lfo_run() {
|
|
|
|
|
# 62.147.165.21 - - [31/Oct/2010:23:45:28 +0100] "GET /prj/imapsync/VERSION HTTP/1.0" 200 6 "-" "imapsync/1.368 (linux system, perl 5.8.8, Mail::IMAPClient 2.2.9 imapsync)"
|
|
|
|
|
#grep prj/imapsync/VERSION /usr/local/apache/logs/access_log | sort -n | cut -d ' ' -f 1,12,13|uniq -c | sort -n # list ip
|
|
|
|
|
|
|
|
|
|
echo lfo list ip
|
|
|
|
|
ssh glamiral@linux-france.org "grep -h prj/imapsync/VERSION /usr/local/apache/logs/access_log.bak|cut -d ' ' -f 1,12,13,18,19|sort -n|uniq -c|sort -n" # list ip
|
|
|
|
|
echo lfo Win32
|
|
|
|
|
ssh glamiral@linux-france.org "grep -h prj/imapsync/VERSION /usr/local/apache/logs/access_log.bak|cut -d ' ' -f 1,12,13,18,19|sort -n|uniq -c|sort -n |grep MSWin32" # Win32
|
|
|
|
|
echo lfo OS usage+basename
|
|
|
|
|
ssh glamiral@linux-france.org "grep -h prj/imapsync/VERSION /usr/local/apache/logs/access_log.bak|cut -d ' ' -f 13,18,19 |sort -n|uniq -c| sort -n" # OS usage+basename
|
|
|
|
|
echo lfo imapsync release
|
|
|
|
|
ssh glamiral@linux-france.org "grep -h prj/imapsync/VERSION /usr/local/apache/logs/access_log.bak|cut -d ' ' -f 12 |sort -n|uniq -c| sort -n" # imapsync release
|
|
|
|
|
echo -n "lfo count ip: "
|
|
|
|
|
ssh glamiral@linux-france.org "grep -h prj/imapsync/VERSION /usr/local/apache/logs/access_log.bak|cut -d ' ' -f 1,12,13,18,19|sort -n|uniq -c|sort -n|wc -l" # count ip
|
|
|
|
|
echo -n "lfo imapsync runs: "
|
|
|
|
|
ssh glamiral@linux-france.org "grep -h prj/imapsync/VERSION /usr/local/apache/logs/access_log.bak|wc -l" # imapsync runs
|
2012-04-17 00:31:15 +02:00
|
|
|
|
date
|
2012-04-17 00:26:18 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2011-07-11 23:24:12 +02:00
|
|
|
|
statistics_ks() {
|
|
|
|
|
|
|
|
|
|
cat <<EOFF
|
2012-04-17 00:26:18 +02:00
|
|
|
|
ssh root@ks "cd /var/log/apache2/;grep -h prj/imapsync/VERSION access.log_????????|cut -d ' ' -f 1,12,13,18,19|sort -n|uniq -c|sort -n" # list ip
|
|
|
|
|
ssh root@ks "cd /var/log/apache2/;grep -h prj/imapsync/VERSION access.log_????????|cut -d ' ' -f 1,12,13,18,19|sort -n|uniq -c|sort -n |grep MSWin32" # Win32
|
2011-07-11 23:24:12 +02:00
|
|
|
|
|
2012-04-17 00:26:18 +02:00
|
|
|
|
ssh root@ks "cd /var/log/apache2/;grep -h prj/imapsync/VERSION access.log_????????|cut -d ' ' -f 13,18,19 |sort -n|uniq -c| sort -n" # OS usage+basename
|
|
|
|
|
ssh root@ks "cd /var/log/apache2/;grep -h prj/imapsync/VERSION access.log_????????|cut -d ' ' -f 12 |sort -n|uniq -c| sort -n" # imapsync release
|
|
|
|
|
ssh root@ks "cd /var/log/apache2/;grep -h prj/imapsync/VERSION access.log_????????|cut -d ' ' -f 1,12,13,18,19|sort -n|uniq -c|sort -n|wc -l" # count ip
|
|
|
|
|
ssh root@ks "cd /var/log/apache2/;grep -h prj/imapsync/VERSION access.log_????????|wc -l" # imapsync runs
|
2011-07-11 23:24:12 +02:00
|
|
|
|
|
2011-09-25 22:31:48 +02:00
|
|
|
|
tail -f /var/log/apache2/access.log |cat -n|grep prj/imapsync/VERSION|cat -n |grep VERSION # ks frequency
|
2011-07-11 23:24:12 +02:00
|
|
|
|
EOFF
|
|
|
|
|
}
|
|
|
|
|
|
2012-04-17 00:26:18 +02:00
|
|
|
|
statistics_ks_run() {
|
|
|
|
|
|
|
|
|
|
echo ks list ip
|
|
|
|
|
ssh root@ks "cd /var/log/apache2/;grep -h prj/imapsync/VERSION access.log_????????|cut -d ' ' -f 1,12,13,18,19|sort -n|uniq -c|sort -n" # list ip
|
|
|
|
|
echo ks Win32
|
|
|
|
|
ssh root@ks "cd /var/log/apache2/;grep -h prj/imapsync/VERSION access.log_????????|cut -d ' ' -f 1,12,13,18,19|sort -n|uniq -c|sort -n |grep MSWin32" # Win32
|
|
|
|
|
echo OS usage+basename
|
|
|
|
|
ssh root@ks "cd /var/log/apache2/;grep -h prj/imapsync/VERSION access.log_????????|cut -d ' ' -f 13,18,19 |sort -n|uniq -c| sort -n" # OS usage+basename
|
|
|
|
|
echo ks imapsync release
|
|
|
|
|
ssh root@ks "cd /var/log/apache2/;grep -h prj/imapsync/VERSION access.log_????????|cut -d ' ' -f 12 |sort -n|uniq -c| sort -n" # imapsync release
|
|
|
|
|
echo -n "ks count ip: "
|
|
|
|
|
ssh root@ks "cd /var/log/apache2/;grep -h prj/imapsync/VERSION access.log_????????|cut -d ' ' -f 1,12,13,18,19|sort -n|uniq -c|sort -n|wc -l" # count ip
|
|
|
|
|
echo -n "ks imapsync runs: "
|
|
|
|
|
ssh root@ks "cd /var/log/apache2/;grep -h prj/imapsync/VERSION access.log_????????|wc -l" # imapsync runs
|
2012-04-17 00:31:15 +02:00
|
|
|
|
date
|
2012-04-17 00:26:18 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2011-07-11 23:24:12 +02:00
|
|
|
|
statistics_VERSION_lfo() {
|
2011-03-12 03:45:02 +01:00
|
|
|
|
|
2011-06-14 12:59:46 +02:00
|
|
|
|
TMPDIR=.
|
|
|
|
|
export TMPDIR
|
|
|
|
|
|
|
|
|
|
echo statistics_VERSION_getstats
|
|
|
|
|
statistics_VERSION_getstats() {
|
2012-04-17 00:30:19 +02:00
|
|
|
|
for f in /home/lf/backuplog/linux-france.org.??-??-201[123456789].bz2; do
|
2011-06-14 12:59:46 +02:00
|
|
|
|
b=`basename "$f" .bz2`
|
2011-09-25 22:31:48 +02:00
|
|
|
|
#echo "$b"
|
2011-06-14 12:59:46 +02:00
|
|
|
|
test -f ${b}.imapsync_VERSION && continue
|
|
|
|
|
echo NOT DONE ${b}.imapsync_VERSION
|
|
|
|
|
bzip2 -dc "$f" | grep -h /prj/imapsync/VERSION > ${b}.imapsync_VERSION
|
|
|
|
|
done
|
|
|
|
|
}
|
|
|
|
|
|
2012-04-17 00:30:19 +02:00
|
|
|
|
echo statistics_VERSION_monthly_ip 02 2012
|
2011-06-14 12:59:46 +02:00
|
|
|
|
statistics_VERSION_monthly_ip() {
|
2011-09-25 22:31:48 +02:00
|
|
|
|
month=${1:-`date '+%m'`}
|
2012-04-17 00:30:19 +02:00
|
|
|
|
year=${2:-`date '+%Y'`}
|
|
|
|
|
cut -d ' ' -f 1,12,13,18,19 linux-france.org.??-${month}-${year}.imapsync_VERSION |sort -n |uniq -c|sort -n > stats_imapsync_${year}_${month}.ip
|
2011-06-14 12:59:46 +02:00
|
|
|
|
}
|
|
|
|
|
|
2012-04-17 00:30:19 +02:00
|
|
|
|
echo statistics_VERSION_monthly_ip_wc 02 2012
|
2011-06-14 12:59:46 +02:00
|
|
|
|
statistics_VERSION_monthly_ip_wc() {
|
2011-09-25 22:31:48 +02:00
|
|
|
|
month=${1:-`date '+%m'`}
|
2012-04-17 00:30:19 +02:00
|
|
|
|
year=${2:-`date '+%Y'`}
|
|
|
|
|
test -f stats_imapsync_${year}_${month}.ip || statistics_VERSION_monthly_ip $month ${year}
|
|
|
|
|
wc -l stats_imapsync_${year}_${month}.ip
|
2011-06-14 12:59:46 +02:00
|
|
|
|
}
|
|
|
|
|
|
2012-04-17 00:30:19 +02:00
|
|
|
|
echo statistics_VERSION_monthly_runs 02 2012
|
2011-06-14 12:59:46 +02:00
|
|
|
|
statistics_VERSION_monthly_runs() {
|
2011-09-25 22:31:48 +02:00
|
|
|
|
month=${1:-`date '+%m'`}
|
2012-04-17 00:30:19 +02:00
|
|
|
|
year=${2:-`date '+%Y'`}
|
|
|
|
|
test -f stats_imapsync_${year}_${month}.runs || wc -l linux-france.org.??-${month}-${year}.imapsync_VERSION > stats_imapsync_${year}_${month}.runs
|
|
|
|
|
cat stats_imapsync_${year}_${month}.runs
|
2011-06-14 12:59:46 +02:00
|
|
|
|
}
|
2011-09-25 22:31:48 +02:00
|
|
|
|
|
2012-04-17 00:30:19 +02:00
|
|
|
|
echo statistics_VERSION_monthly 02 2012
|
2011-09-25 22:31:48 +02:00
|
|
|
|
statistics_VERSION_monthly() {
|
|
|
|
|
month=${1:-`date '+%m'`}
|
2012-04-17 00:30:19 +02:00
|
|
|
|
year=${2:-`date '+%Y'`}
|
2011-09-25 22:31:48 +02:00
|
|
|
|
(
|
|
|
|
|
statistics_VERSION_getstats
|
2012-04-17 00:30:19 +02:00
|
|
|
|
statistics_VERSION_monthly_ip $month $year
|
|
|
|
|
statistics_VERSION_monthly_runs $month $year
|
|
|
|
|
statistics_VERSION_monthly_ip_wc $month $year
|
2011-09-25 22:31:48 +02:00
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
2012-04-17 00:30:19 +02:00
|
|
|
|
|
|
|
|
|
echo statistics_VERSION_yearly_ip 2012
|
2012-04-17 00:26:18 +02:00
|
|
|
|
statistics_VERSION_yearly_ip() {
|
|
|
|
|
year=${1:-`date '+%Y'`}
|
|
|
|
|
(
|
|
|
|
|
cd /home/lf/glamiral/imapsync_stats
|
|
|
|
|
cut -d ' ' -f 1,12,13,18,19 linux-france.org.??-??-${year}.imapsync_VERSION |sort -n |uniq -c|sort -n > stats_imapsync_${year}.ip
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
2012-04-17 00:30:19 +02:00
|
|
|
|
echo statistics_VERSION_yearly_os 2012
|
2012-04-17 00:26:18 +02:00
|
|
|
|
statistics_VERSION_yearly_os() {
|
|
|
|
|
year=${1:-`date '+%Y'`}
|
|
|
|
|
(
|
|
|
|
|
cd /home/lf/glamiral/imapsync_stats
|
|
|
|
|
Linux=`grep linux stats_imapsync_${year}.ip | wc -l`
|
|
|
|
|
Win32=`grep MSWin32 stats_imapsync_${year}.ip | wc -l`
|
|
|
|
|
Darwin=`grep darwin stats_imapsync_${year}.ip | wc -l`
|
|
|
|
|
FreeBSD=`grep freebsd stats_imapsync_${year}.ip | wc -l`
|
|
|
|
|
Solaris=`grep solaris stats_imapsync_${year}.ip | wc -l`
|
|
|
|
|
OpenBSD=`grep openbsd stats_imapsync_${year}.ip | wc -l`
|
|
|
|
|
Nb_All=`cat stats_imapsync_${year}.ip | wc -l`
|
|
|
|
|
for OS in Linux Win32 Darwin FreeBSD Solaris OpenBSD; do
|
|
|
|
|
#echo $OS `eval "echo \\$$OS"` / $Nb_All
|
|
|
|
|
Nb_OS=`eval "echo \\$$OS"`
|
|
|
|
|
PerCent=`echo "scale=2; 100*$Nb_OS/$Nb_All" | bc -l`
|
|
|
|
|
echo $OS $PerCent %
|
|
|
|
|
done
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2012-04-17 00:30:19 +02:00
|
|
|
|
echo statistics_VERSION_synthesis 2012
|
2011-09-25 22:31:48 +02:00
|
|
|
|
statistics_VERSION_synthesis() {
|
2012-04-17 00:26:18 +02:00
|
|
|
|
year=${1:-`date '+%Y'`}
|
2011-09-25 22:31:48 +02:00
|
|
|
|
(
|
|
|
|
|
cd /home/lf/glamiral/imapsync_stats
|
|
|
|
|
echo Nb users each month
|
2012-04-17 00:26:18 +02:00
|
|
|
|
wc -l stats_imapsync_${year}_??.ip
|
|
|
|
|
echo Nb users each year
|
|
|
|
|
wc -l stats_imapsync_????.ip
|
2011-09-25 22:31:48 +02:00
|
|
|
|
echo Nb runs each month
|
2012-04-17 00:26:18 +02:00
|
|
|
|
tail -n 1 stats_imapsync_${year}_??.runs
|
|
|
|
|
echo % Operating systems
|
|
|
|
|
statistics_VERSION_yearly_os $year
|
|
|
|
|
echo Biggest users
|
|
|
|
|
tail -n 5 stats_imapsync_${year}.ip
|
2011-09-25 22:31:48 +02:00
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2011-07-11 23:24:12 +02:00
|
|
|
|
}
|
2011-06-14 12:59:46 +02:00
|
|
|
|
|
2011-07-11 23:24:12 +02:00
|
|
|
|
statistics_VERSION_ks() {
|
2011-06-14 12:59:46 +02:00
|
|
|
|
|
2011-07-11 23:24:12 +02:00
|
|
|
|
TMPDIR=.
|
|
|
|
|
export TMPDIR
|
2011-06-14 12:59:46 +02:00
|
|
|
|
|
2011-07-11 23:24:12 +02:00
|
|
|
|
echo statistics_VERSION_getstats
|
|
|
|
|
statistics_VERSION_getstats() {
|
|
|
|
|
(
|
|
|
|
|
cd /home/imapsync/imapsync_stats
|
|
|
|
|
for f in /var/log/apache2/access.log_????????.gz ; do
|
|
|
|
|
b=`basename "$f" .gz`
|
2011-09-25 22:31:48 +02:00
|
|
|
|
#echo "$b"
|
2011-07-11 23:24:12 +02:00
|
|
|
|
test -f ${b}.imapsync_VERSION && continue
|
|
|
|
|
echo NOT DONE ${b}.imapsync_VERSION
|
|
|
|
|
zgrep -h /prj/imapsync/VERSION "$f" > ${b}.imapsync_VERSION
|
|
|
|
|
done
|
|
|
|
|
)
|
2011-06-14 12:59:46 +02:00
|
|
|
|
}
|
2011-03-12 03:45:02 +01:00
|
|
|
|
|
2011-09-25 22:31:48 +02:00
|
|
|
|
echo statistics_VERSION_monthly_ip 08
|
2011-07-11 23:24:12 +02:00
|
|
|
|
statistics_VERSION_monthly_ip() {
|
2011-09-25 22:31:48 +02:00
|
|
|
|
month=${1:-`date '+%m'`}
|
2012-04-17 00:30:19 +02:00
|
|
|
|
year=${2:-`date '+%Y'`}
|
2011-07-11 23:24:12 +02:00
|
|
|
|
(
|
|
|
|
|
cd /home/imapsync/imapsync_stats
|
2012-04-17 00:30:19 +02:00
|
|
|
|
cut -d ' ' -f 1,12,13,18,19 access.log_${year}${month}??.imapsync_VERSION |sort -n |uniq -c|sort -n > stats_imapsync_${year}_${month}.ip
|
2011-07-11 23:24:12 +02:00
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
2012-04-17 00:26:18 +02:00
|
|
|
|
echo statistics_VERSION_monthly_os 08
|
|
|
|
|
statistics_VERSION_monthly_os() {
|
|
|
|
|
month=${1:-`date '+%m'`}
|
2012-04-17 00:30:19 +02:00
|
|
|
|
year=${2:-`date '+%Y'`}
|
2012-04-17 00:26:18 +02:00
|
|
|
|
(
|
|
|
|
|
cd /home/imapsync/imapsync_stats
|
2012-04-17 00:30:19 +02:00
|
|
|
|
Linux=`grep linux stats_imapsync_${year}_${month}.ip | wc -l`
|
|
|
|
|
Win32=`grep MSWin32 stats_imapsync_${year}_${month}.ip | wc -l`
|
|
|
|
|
Darwin=`grep darwin stats_imapsync_${year}_${month}.ip | wc -l`
|
|
|
|
|
FreeBSD=`grep freebsd stats_imapsync_${year}_${month}.ip | wc -l`
|
|
|
|
|
Solaris=`grep solaris stats_imapsync_${year}_${month}.ip | wc -l`
|
|
|
|
|
OpenBSD=`grep openbsd stats_imapsync_${year}_${month}.ip | wc -l`
|
|
|
|
|
Nb_All=`cat stats_imapsync_${year}_${month}.ip | wc -l `
|
2012-04-17 00:26:18 +02:00
|
|
|
|
for OS in Linux Win32 Darwin FreeBSD Solaris OpenBSD; do
|
|
|
|
|
#echo $OS `eval "echo \\$$OS"` / $Nb_All
|
|
|
|
|
Nb_OS=`eval "echo \\$$OS"`
|
|
|
|
|
PerCent=`echo "scale=2; 100*$Nb_OS/$Nb_All" | bc -l`
|
|
|
|
|
echo $OS $PerCent%
|
|
|
|
|
done
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
echo statistics_VERSION_yearly_os
|
|
|
|
|
statistics_VERSION_yearly_os() {
|
|
|
|
|
year=${1:-`date '+%Y'`}
|
|
|
|
|
(
|
|
|
|
|
cd /home/imapsync/imapsync_stats
|
|
|
|
|
Linux=`grep linux stats_imapsync_${year}.ip | wc -l`
|
|
|
|
|
Win32=`grep MSWin32 stats_imapsync_${year}.ip | wc -l`
|
|
|
|
|
Darwin=`grep darwin stats_imapsync_${year}.ip | wc -l`
|
|
|
|
|
FreeBSD=`grep freebsd stats_imapsync_${year}.ip | wc -l`
|
|
|
|
|
Solaris=`grep solaris stats_imapsync_${year}.ip | wc -l`
|
|
|
|
|
OpenBSD=`grep openbsd stats_imapsync_${year}.ip | wc -l`
|
|
|
|
|
Nb_All=`cat stats_imapsync_${year}.ip | wc -l`
|
|
|
|
|
for OS in Linux Win32 Darwin FreeBSD Solaris OpenBSD; do
|
|
|
|
|
#echo $OS `eval "echo \\$$OS"` / $Nb_All
|
|
|
|
|
Nb_OS=`eval "echo \\$$OS"`
|
|
|
|
|
PerCent=`echo "scale=2; 100*$Nb_OS/$Nb_All" | bc -l`
|
|
|
|
|
echo $OS $PerCent %
|
|
|
|
|
done
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2011-09-25 22:31:48 +02:00
|
|
|
|
echo statistics_VERSION_yearly_ip
|
|
|
|
|
statistics_VERSION_yearly_ip() {
|
2012-04-17 00:26:18 +02:00
|
|
|
|
year=${1:-`date '+%Y'`}
|
2011-09-25 22:31:48 +02:00
|
|
|
|
(
|
|
|
|
|
cd /home/imapsync/imapsync_stats
|
2012-04-17 00:26:18 +02:00
|
|
|
|
cut -d ' ' -f 1,12,13,18,19 access.log_${year}????.imapsync_VERSION |sort -n |uniq -c|sort -n > stats_imapsync_${year}.ip
|
2011-09-25 22:31:48 +02:00
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
2012-04-17 00:30:19 +02:00
|
|
|
|
echo statistics_VERSION_monthly_ip_wc 01 2012
|
2011-07-11 23:24:12 +02:00
|
|
|
|
statistics_VERSION_monthly_ip_wc() {
|
2011-09-25 22:31:48 +02:00
|
|
|
|
month=${1:-`date '+%m'`}
|
2012-04-17 00:30:19 +02:00
|
|
|
|
year=${2:-`date '+%Y'`}
|
2011-07-11 23:24:12 +02:00
|
|
|
|
(
|
|
|
|
|
cd /home/imapsync/imapsync_stats
|
2012-04-17 00:30:19 +02:00
|
|
|
|
test -f stats_imapsync_${year}_${month}.ip || statistics_VERSION_monthly_ip $month ${year}
|
|
|
|
|
wc -l stats_imapsync_${year}_${month}.ip
|
2011-07-11 23:24:12 +02:00
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
2012-04-17 00:30:19 +02:00
|
|
|
|
echo statistics_VERSION_monthly_runs 01 2012
|
2011-07-11 23:24:12 +02:00
|
|
|
|
statistics_VERSION_monthly_runs() {
|
2011-09-25 22:31:48 +02:00
|
|
|
|
month=${1:-`date '+%m'`}
|
2012-04-17 00:30:19 +02:00
|
|
|
|
year=${2:-`date '+%Y'`}
|
2011-07-11 23:24:12 +02:00
|
|
|
|
(
|
|
|
|
|
cd /home/imapsync/imapsync_stats
|
2012-04-17 00:30:19 +02:00
|
|
|
|
wc -l access.log_${year}${month}??.imapsync_VERSION > stats_imapsync_${year}_${month}.runs
|
|
|
|
|
cat stats_imapsync_${year}_${month}.runs
|
2011-07-11 23:24:12 +02:00
|
|
|
|
)
|
|
|
|
|
}
|
2011-09-25 22:31:48 +02:00
|
|
|
|
|
2012-04-17 00:30:19 +02:00
|
|
|
|
echo statistics_VERSION_monthly 01 2012
|
2011-09-25 22:31:48 +02:00
|
|
|
|
statistics_VERSION_monthly() {
|
|
|
|
|
month=${1:-`date '+%m'`}
|
2012-04-17 00:30:19 +02:00
|
|
|
|
year=${2:-`date '+%Y'`}
|
2011-09-25 22:31:48 +02:00
|
|
|
|
(
|
|
|
|
|
statistics_VERSION_getstats
|
2012-04-17 00:30:19 +02:00
|
|
|
|
statistics_VERSION_monthly_ip $month $year
|
|
|
|
|
statistics_VERSION_monthly_runs $month $year
|
|
|
|
|
statistics_VERSION_monthly_ip_wc $month $year
|
2011-09-25 22:31:48 +02:00
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
2012-04-17 00:30:19 +02:00
|
|
|
|
echo statistics_VERSION_synthesis 2012
|
2011-09-25 22:31:48 +02:00
|
|
|
|
statistics_VERSION_synthesis() {
|
2012-04-17 00:26:18 +02:00
|
|
|
|
year=${1:-`date '+%Y'`}
|
2011-09-25 22:31:48 +02:00
|
|
|
|
(
|
|
|
|
|
cd /home/imapsync/imapsync_stats
|
|
|
|
|
echo Nb users each month
|
2012-04-17 00:26:18 +02:00
|
|
|
|
wc -l stats_imapsync_${year}_??.ip
|
|
|
|
|
echo Nb users each year
|
|
|
|
|
wc -l stats_imapsync_????.ip
|
2011-09-25 22:31:48 +02:00
|
|
|
|
echo Nb runs each month
|
2012-04-17 00:26:18 +02:00
|
|
|
|
tail -n 1 stats_imapsync_${year}_??.runs
|
|
|
|
|
echo % Operating systems
|
|
|
|
|
statistics_VERSION_yearly_os $year
|
|
|
|
|
echo Biggest users
|
|
|
|
|
tail -n 5 stats_imapsync_${year}.ip
|
2011-09-25 22:31:48 +02:00
|
|
|
|
)
|
|
|
|
|
}
|
2011-07-11 23:24:12 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2011-03-12 03:43:54 +01:00
|
|
|
|
niouzes_compil() {
|
2011-03-12 03:45:04 +01:00
|
|
|
|
(
|
|
|
|
|
cd /g/public_html/www.linux-france.org/html/
|
2011-03-12 03:43:54 +01:00
|
|
|
|
m4 niouzes.m4 > niouzes.xml
|
|
|
|
|
python ./niouzes/getmynews.py --neuf niouzes.xml > niouzes-neuf.html
|
|
|
|
|
python ./niouzes/getmynews.py --html niouzes.xml > niouzes-html.html
|
2011-03-12 03:45:04 +01:00
|
|
|
|
)
|
2011-03-12 03:43:54 +01:00
|
|
|
|
}
|
|
|
|
|
|
2011-03-12 03:44:35 +01:00
|
|
|
|
|
|
|
|
|
|
2011-03-12 03:43:54 +01:00
|
|
|
|
lfo_announce() {
|
|
|
|
|
software_version
|
2011-03-12 03:45:04 +01:00
|
|
|
|
NEWS_FILE="/g/public_html/www.linux-france.org/html/niouzes/niouzes_imapsync.xml"
|
2011-03-12 03:43:54 +01:00
|
|
|
|
if ! newer VERSION $NEWS_FILE; then
|
|
|
|
|
echo "$VERSION already announced"
|
|
|
|
|
else
|
2011-03-12 03:43:55 +01:00
|
|
|
|
cat > $NEWS_FILE << EOF
|
2011-03-12 03:43:54 +01:00
|
|
|
|
|
|
|
|
|
<news date="`date '+%Y%m%d'`">
|
2011-03-12 03:44:35 +01:00
|
|
|
|
`LANG=fr_FR date '+%A %d %B %Y'` : Synchronisez ou migrez vos boites
|
|
|
|
|
aux lettres avec <20>conomie et l'outil <A
|
2011-03-12 03:43:54 +01:00
|
|
|
|
HREF="prj/imapsync/">imapsync $VERSION</A> (Gilles LAMIRAL)
|
|
|
|
|
</news>
|
|
|
|
|
EOF
|
|
|
|
|
fi
|
|
|
|
|
niouzes_compil
|
|
|
|
|
}
|
|
|
|
|
|
2011-03-12 03:44:49 +01:00
|
|
|
|
#' nedit sucks with syntax color
|
2011-03-12 03:44:27 +01:00
|
|
|
|
|
2011-03-12 03:44:35 +01:00
|
|
|
|
fm_init() {
|
2011-03-12 03:44:21 +01:00
|
|
|
|
software_version
|
2011-03-12 03:44:49 +01:00
|
|
|
|
NEWS_FILE_FM="./freshmeat_submition"
|
2011-03-12 03:44:27 +01:00
|
|
|
|
NEWS_FILE_FM_INP=${NEWS_FILE_FM}.inp
|
2011-03-12 03:45:02 +01:00
|
|
|
|
NEWS_FILE_FM_OUT=${NEWS_FILE_FM}.json
|
2011-03-12 03:44:35 +01:00
|
|
|
|
}
|
2011-03-12 03:44:27 +01:00
|
|
|
|
|
2011-03-12 03:44:49 +01:00
|
|
|
|
fm_read_param() {
|
|
|
|
|
# read definitions
|
|
|
|
|
. $NEWS_FILE_FM_INP
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2011-03-12 03:44:35 +01:00
|
|
|
|
fm_read_announce() {
|
|
|
|
|
|
2011-03-12 03:44:49 +01:00
|
|
|
|
fm_init
|
|
|
|
|
fm_read_param
|
2011-03-12 03:44:35 +01:00
|
|
|
|
|
2011-03-12 03:44:49 +01:00
|
|
|
|
cat << EOF
|
2011-03-12 03:45:02 +01:00
|
|
|
|
{
|
|
|
|
|
"release": {
|
|
|
|
|
"tag_list": "stable, $RELEASE_FOCUS",
|
|
|
|
|
"version": "$VERSION",
|
|
|
|
|
"hidden_from_frontpage": false,
|
|
|
|
|
"changelog": "$TEXT_BODY"
|
|
|
|
|
}
|
|
|
|
|
}
|
2011-03-12 03:44:27 +01:00
|
|
|
|
|
2011-03-12 03:44:21 +01:00
|
|
|
|
EOF
|
2011-03-12 03:44:35 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fm_announce() {
|
2011-03-12 03:44:49 +01:00
|
|
|
|
fm_init
|
2011-03-12 03:44:35 +01:00
|
|
|
|
|
2011-03-12 03:44:49 +01:00
|
|
|
|
if ! newer VERSION $NEWS_FILE_FM_OUT; then
|
2011-03-12 03:44:35 +01:00
|
|
|
|
echo "$VERSION already submitted on freshmeat"
|
2011-03-12 03:44:49 +01:00
|
|
|
|
else
|
2011-03-12 03:44:35 +01:00
|
|
|
|
if newer VERSION $NEWS_FILE_FM_INP; then
|
|
|
|
|
echo "Update $NEWS_FILE_FM_INP please"
|
|
|
|
|
return 1
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
fm_read_announce > $NEWS_FILE_FM_OUT
|
2011-03-12 03:45:02 +01:00
|
|
|
|
curl -X PUT -d @../../var/pass/secret.freshmeat -d @$NEWS_FILE_FM_OUT \
|
|
|
|
|
-H "Content-Type: application/json" \
|
|
|
|
|
http://freshmeat.net/projects/imapsync.json
|
|
|
|
|
|
2011-03-12 03:44:49 +01:00
|
|
|
|
fi
|
2011-03-12 03:44:21 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|