Re: [CentOS] Webalizer cron syntax

2008-09-12 Thread Filipe Brandenburger
Hi,

On Fri, Sep 12, 2008 at 01:38, Bob Hoffman <[EMAIL PROTECTED]> wrote:
> if [ -s /var/log/httpd/mysite1_access_log ]; then exec /usr/bin/webalizer
> -Qc /etc/webalizer/mysite1.conf;
> fi
> if [ -s /var/log/httpd/mysite2_access_log ]; then exec /usr/bin/webalizer
> -Qc /etc/webalizer/mysite2.conf;
> Fi

You have to remove the "exec" from the command lines. "exec" means the
program that will run will replace the script, so no command after
that one will execute on the script.

> If I do not add the fi after each, the file gets an error when I run
> /etc/cron.daily/00webalizer

Yes, you must keep the "fi"s, and I believe they should be lowercase.

HTH,
Filipe
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


RE: [CentOS] Webalizer cron syntax

2008-09-11 Thread Bob Hoffman
 
What worked for the cron...but not doing the original one is this...

for i in /etc/webalizer/*.conf; do webalizer -Qc $i; done

I guess a second one needs to be made for the main one...or maybe another
line.

But this worked.

___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos