Changeset 2161
- Timestamp:
- 04/21/08 23:13:57 (3 weeks ago)
- Files:
-
- alternc-awstats/trunk/awstats.alternc.generic.conf (modified) (2 diffs)
- alternc-awstats/trunk/awstats.template.conf (modified) (1 diff)
- alternc-awstats/trunk/debian/changelog (modified) (1 diff)
- alternc-awstats/trunk/debian/control (modified) (1 diff)
- alternc-awstats/trunk/debian/postinst (modified) (4 diffs)
- alternc-awstats/trunk/debian/postrm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
alternc-awstats/trunk/awstats.alternc.generic.conf
r1859 r2161 49 49 # Example: "/pathtotools/logresolvemerge.pl *.log |" 50 50 # 51 LogFile="/var/log/apache/access.log"52 51 53 52 … … 1468 1467 # 1469 1468 1470 1469 Include "/etc/awstats/awstats.log.alternc.conf" alternc-awstats/trunk/awstats.template.conf
r1859 r2161 5 5 DirData="/var/cache/awstats/%%HOSTNAME%%" 6 6 AllowAccessFromWebToFollowingAuthenticatedUsers="root %%USERS%%" 7 AllowAccessFromWebToAuthenticatedUsersOnly=%%PUBLIC%% 7 8 AllowFullYearView=3 alternc-awstats/trunk/debian/changelog
r1887 r2161 1 alternc-awstats (0.5.2) testing; urgency=low 2 3 * Close Ticket #1120 4 * Close Ticket #1126 5 * Compatible Apache2 6 7 -- Arnaud Engelaere <webmaster@servlan.org> Mon, 21 Apr 2008 22:20:49 +0100 8 1 9 alternc-awstats (0.5.1) testing; urgency=low 2 10 alternc-awstats/trunk/debian/control
r1866 r2161 23 23 More information on http://www.alternc.org/. 24 24 Description-fr: Modules de gestion de statistiques awstats pour AlternC. 25 Alternc est un logiciel d'h ébergement intégral basésur le26 projet fran çais de Valentin Lacambre « altern.org ».25 Alternc est un logiciel d'hébergement intégral basé sur le 26 projet français de Valentin Lacambre < altern.org >. 27 27 . 28 28 Ce paquet est un module optionnel qui permet aux utilisateurs 29 du bureau AlternC de g érer leurs statistiques Awstats. Ce module30 ajoute la classe m_aws ÃAlternC.29 du bureau AlternC de gèrer leurs statistiques Awstats. Ce module 30 ajoute la classe m_aws à AlternC. 31 31 . 32 32 Pour plus d'informations, consultez http://www.alternc.org/. alternc-awstats/trunk/debian/postinst
r1866 r2161 8 8 CONFIGFILE="/etc/alternc/local.sh" 9 9 MENUFILE="/etc/alternc/menulist.txt" 10 APACHEROTATE="/etc/logrotate.d/apache" 10 LOGAPACHE="/etc/awstats/awstats.log.alternc.conf" 11 12 if [ -x /usr/sbin/apache ]; then 13 APACHEROTATE="/etc/logrotate.d/apache" 14 fi 15 16 if [ -x /usr/sbin/apache2 ]; then 17 APACHEROTATE="/etc/logrotate.d/apache2" 18 fi 11 19 12 20 # Add awstats include to the apache configuration file given as argument … … 45 53 # configure /etc/alternc/templates/apache-ssl/httpd.conf 46 54 47 if [ ! -h /etc/apache/conf.d/alterncawstats.conf ]; then 48 ln -sf /etc/alternc/alterncawstats.conf \ 49 /etc/apache/conf.d/alterncawstats.conf 55 if [ -x /usr/sbin/apache ]; then 56 if [ ! -h /etc/apache/conf.d/alterncawstats.conf ]; then 57 ln -sf /etc/alternc/alterncawstats.conf \ 58 /etc/apache/conf.d/alterncawstats.conf 59 fi 60 # build awstats.log.alternc.conf if it does not exist 61 if [ ! -f $LOGAPACHE ]; then 62 cat > $LOGAPACHE <<EOF 63 LogFile="/var/log/apache/access.log" 64 EOF 65 chown www-data:www-data $LOGAPACHE 66 chmod 640 $LOGAPACHE 67 fi 68 fi 69 70 if [ -x /usr/sbin/apache2 ]; then 71 if [ ! -h /etc/apache2/conf.d/alterncawstats.conf ]; then 72 ln -sf /etc/alternc/alterncawstats.conf \ 73 /etc/apache2/conf.d/alterncawstats.conf 74 fi 75 # build awstats.log.alternc.conf if it does not exist 76 if [ ! -f $LOGAPACHE ]; then 77 cat > $LOGAPACHE <<EOF 78 LogFile="/var/log/apache2/access.log" 79 EOF 80 chown www-data:www-data $LOGAPACHE 81 chmod 640 $LOGAPACHE 82 fi 50 83 fi 51 84 … … 55 88 fi 56 89 57 58 90 if [ ! -h /var/alternc/cgi-bin/awstats.pl ]; then 59 91 ln -sf /usr/lib/cgi-bin/awstats.pl \ … … 65 97 # Process the language compilation. 66 98 /usr/share/alternc/install/dopo.sh 67 99 68 100 # Add htpasswd : 69 101 touch /etc/alternc/awstats.htpasswd alternc-awstats/trunk/debian/postrm
r1579 r2161 39 39 rm -f /etc/alternc/alterncawstats.conf \ 40 40 /etc/apache/conf.d/alterncawstats.conf \ 41 /etc/apache2/conf.d/alterncawstats.conf \ 41 42 /etc/apache-ssl/conf.d/alterncawstats.conf 42 43 ;;
