Skip to content

Commit

Permalink
Fixed webalizer and awstats support for Debian/Ubuntu
Browse files Browse the repository at this point in the history
  • Loading branch information
serghey-rodin committed Nov 4, 2013
1 parent 170098c commit 6a80e6b
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 4 deletions.
6 changes: 6 additions & 0 deletions bin/v-add-web-domain-stats
Expand Up @@ -54,7 +54,10 @@ upd_web_domain_values
cat $WEBTPL/$type/$type.tpl |\
sed -e "s/%ip%/$ip/g" \
-e "s/%web_port%/$WEB_PORT/g" \
-e "s/%web_system%/$WEB_SYSTEM/g" \
-e "s/%web_ssl_port%/$WEB_SSL_PORT/g" \
-e "s/%rgroups%/$WEB_RGROUPS/g" \
-e "s/%proxy_system%/$PROXY_SYSTEM/g" \
-e "s/%proxy_port%/$PROXY_PORT/g" \
-e "s/%proxy_ssl_port%/$PROXY_SSL_PORT/g" \
-e "s/%domain_idn%/$domain_idn/g" \
Expand All @@ -66,8 +69,11 @@ cat $WEBTPL/$type/$type.tpl |\
> $HOMEDIR/$user/conf/web/$type.$domain.conf

if [ "$type" == 'awstats' ]; then
rm -f /etc/awstats/$type.$domain_idn.conf
ln -s $HOMEDIR/$user/conf/web/$type.$domain.conf \
/etc/awstats/$type.$domain_idn.conf
else
mkdir -p /var/lib/webalizer
fi


Expand Down
6 changes: 6 additions & 0 deletions bin/v-change-web-domain-stats
Expand Up @@ -66,7 +66,10 @@ upd_web_domain_values
cat $WEBTPL/$type/$type.tpl |\
sed -e "s/%ip%/$ip/g" \
-e "s/%web_port%/$WEB_PORT/g" \
-e "s/%web_system%/$WEB_SYSTEM/g" \
-e "s/%web_ssl_port%/$WEB_SSL_PORT/g" \
-e "s/%rgroups%/$WEB_RGROUPS/g" \
-e "s/%proxy_system%/$PROXY_SYSTEM/g" \
-e "s/%proxy_port%/$PROXY_PORT/g" \
-e "s/%proxy_ssl_port%/$PROXY_SSL_PORT/g" \
-e "s/%domain_idn%/$domain_idn/g" \
Expand All @@ -78,8 +81,11 @@ cat $WEBTPL/$type/$type.tpl |\
> $HOMEDIR/$user/conf/web/$type.$domain.conf

if [ "$type" == 'awstats' ]; then
rm -f /etc/awstats/$type.$domain_idn.conf
ln -s $HOMEDIR/$user/conf/web/$type.$domain.conf \
/etc/awstats/$type.$domain_idn.conf
else
mkdir -p /var/lib/webalizer
fi


Expand Down
11 changes: 7 additions & 4 deletions bin/v-update-web-domain-stat
Expand Up @@ -60,8 +60,13 @@ build_webalizer() {
}

build_awstats() {
awstats="/usr/share/awstats/wwwroot/cgi-bin/awstats.pl"
wwwroot="/usr/share/awstats/wwwroot"
if [ -e "/etc/redhat-release" ]; then
awstats="/usr/share/awstats/wwwroot/cgi-bin/awstats.pl"
wwwroot="/usr/share/awstats/wwwroot"
else
awstats="/usr/lib/cgi-bin/awstats.pl"
wwwroot="/usr/share/awstats"
fi
opts="-config=$domain_idn -staticlinks -update -output"
month=$(date "+%Y-%m")
output='alldomains allhosts lasthosts unknownip allrobots lastrobots
Expand Down Expand Up @@ -116,8 +121,6 @@ build_awstats() {
11) month='November';;
12) month='December';;
esac
echo $month

select_m="$select_m<option value=$link>$month $year<\/option>\n"
done
cat $WEBTPL/awstats/nav.tpl | sed "s/%select_month%/$select_m/" >\
Expand Down

0 comments on commit 6a80e6b

Please sign in to comment.