diff options
| -rwxr-xr-x | daily.sh | 13 | 
1 files changed, 11 insertions, 2 deletions
| @@ -17,15 +17,24 @@ AWMON=`/bin/date -d yesterday +%m`  # Run awstats  ${SITEROOT}/awstats/awstats -config="${DOMAIN}" -update 2>&1 | /usr/bin/ts "${TSFMT} awstats:" >>"${LOGFILE}" -# Remove any PII (i.e. IP addresses) from the awstats data  AWDATA="${SITEROOT}/awstats/data/awstats${AWMON}${AWYEAR}.txt" +AWHTML="${SITEROOT}/awstats/html/${AWYEAR}-${AWMON}" + +# Remove any PII (i.e. IP addresses) from the awstats data  /bin/grep -E -v "^[[:digit:]]{1,3}\\.[[:digit:]]{1,3}\\.[[:digit:]]{1,3}\\.[[:digit:]]{1,3} [[:digit:]]" "${AWDATA}" \  	| /bin/sed -e "s/^BEGIN_VISITOR [[:digit:]]\\+\$/BEGIN_VISITOR 0/" \  	| /usr/bin/sponge "${AWDATA}" +# Ensure the destination directory for the relevant month exists +/bin/mkdir -p "${AWHTML}" + +# Build the stats pages  /usr/share/awstats/tools/awstats_buildstaticpages.pl \  	-awstatsprog="${SITEROOT}/awstats/awstats" \ -	-config="${DOMAIN}" -dir="${SITEROOT}/awstats/html" \ +	-config="${DOMAIN}" -dir="${AWHTML}" \  	-year="${AWYEAR}" -month="${AWMON}" \  	2>&1 | /usr/bin/ts "${TSFMT} awstats_buildstaticpages.pl:" >>"${LOGFILE}" +# Add an index.html symlink (why doesn't it do this itself already?) +/bin/ln -s -f "awstats.${DOMAIN}.html" "${AWHTML}/index.html" + | 
