Show
Ignore:
Timestamp:
03/01/08 19:49:54 (9 months ago)
Author:
rats
Message:

* Updated all Docs. Some are still with ToDo?
* Fixed #1070: FreeBSD, ispcp-setup uses group which does not exist
* Updated all languages
* Inproved: Update SQL with IGNORE statement
* Update PHPmyAdmin to version 2.11.5
* Updated all distributions
* Dropped support of Suse Enterprise Linux Server (SELS) - Please use OpenSuse? files

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/configs/dists/opensuse/logrotate/ispcp

    r885 r1026  
    1212        endscript 
    1313        postrotate 
    14         if [ -f /var/run/httpd.pid ]; then 
    15                 /etc/init.d/apache2 reload > /dev/null 
    16         fi 
     14        for i in `seq 1 10`; do 
     15                if [ -f /var/run/httpd.pid ]; then 
     16                        /etc/init.d/apache2 stop > /dev/null 
     17                        sleep 5 
     18                        /etc/init.d/apache2 start > /dev/null 
     19                fi 
     20        done 
    1721        endscript 
    1822} 
     23 
     24/var/log/proftpd/xferlog { 
     25  daily 
     26  rotate 7 
     27  missingok 
     28  compress 
     29  delaycompress 
     30  postrotate 
     31    /srv/bin/killall -HUP syslogd 
     32  endscript 
     33} 
     34 
     35/var/log/proftpd/ftp_traff.log { 
     36  daily 
     37  rotate 7 
     38  missingok 
     39  compress 
     40  delaycompress 
     41  prerotate 
     42    /var/www/ispcp/engine/traffic/ispcp-vrl-traff > /var/log/ispcp/ispcp-vrl-traff.log 
     43  endscript 
     44  postrotate 
     45    /srv/bin/killall -HUP syslogd 
     46  endscript 
     47}