|
Server : Apache/2.2.2 (Fedora) System : Linux App1.pathumtani.go.th 2.6.20-1.2320.fc5smp #1 SMP Tue Jun 12 19:40:16 EDT 2007 i686 User : apache ( 48) PHP Version : 5.2.9 Disable Function : NONE Directory : /usr/libexec/webmin/webalizer/ |
Upload File : |
#!/usr/bin/perl
# webalizer.pl
# Generate a report on schedule
$no_acl_check++;
require './webalizer-lib.pl';
$lconf = &get_log_config($ARGV[0]);
$lconf || die "Logfile $ARGV[0] config file does not exist";
open(NULL, ">/dev/null");
$ok = &generate_report($ARGV[0], NULL, 0);
close(NULL);
if ($ok && $lconf->{'clear'}) {
# Truncate or delete the files for this report
foreach $f (&all_log_files($ARGV[0])) {
next if (!-r $f);
if ($f eq $ARGV[0]) {
# Just truncate the main log file
truncate($f, 0);
}
else {
# Delete any extra compressed files
unlink($f);
}
}
}