Re: F18, F19 webalizer problem?

2013-05-02 Thread Adam Williamson
On Fri, 2013-04-26 at 16:42 +0300, Cristian Sava wrote: On Fri, 2013-04-26 at 08:30 -0500, Chris Adams wrote: Once upon a time, Jonathan Kamens j...@kamens.us said: This, however, is fine: [ $WEBALIZER_CRON != yes ] because the quotes ensure that the statement will be evaluated

F18, F19 webalizer problem?

2013-04-26 Thread Cristian Sava
Hi all, Webalizer is enabled via /etc/sysconfig/webalizer but I don't understand why /etc/cron.daily/00webalizer has this line: [ z$WEBALIZER_CRON != zyes ] exit 0 that I think it should be (and it is working this way) [ $WEBALIZER_CRON != yes ] exit 0 What is the mistery? C.Sava --

Re: F18, F19 webalizer problem?

2013-04-26 Thread Jonathan Kamens
On 04/26/2013 08:58 AM, Cristian Sava wrote: Webalizer is enabled via /etc/sysconfig/webalizer but I don't understand why /etc/cron.daily/00webalizer has this line: [ z$WEBALIZER_CRON != zyes ] exit 0 that I think it should be (and it is working this way) [ $WEBALIZER_CRON != yes ] exit 0

Re: F18, F19 webalizer problem?

2013-04-26 Thread Cristian Sava
On Fri, 2013-04-26 at 09:09 -0400, Jonathan Kamens wrote: On 04/26/2013 08:58 AM, Cristian Sava wrote: Webalizer is enabled via /etc/sysconfig/webalizer but I don't understand why /etc/cron.daily/00webalizer has this line: [ z$WEBALIZER_CRON != zyes ] exit 0 that I think it should

Re: F18, F19 webalizer problem?

2013-04-26 Thread Chris Adams
Once upon a time, Jonathan Kamens j...@kamens.us said: This, however, is fine: [ $WEBALIZER_CRON != yes ] because the quotes ensure that the statement will be evaluated with an expression to the left of the != even if the expression is just an empty string. This is fine too: [

Re: F18, F19 webalizer problem?

2013-04-26 Thread Cristian Sava
On Fri, 2013-04-26 at 08:30 -0500, Chris Adams wrote: Once upon a time, Jonathan Kamens j...@kamens.us said: This, however, is fine: [ $WEBALIZER_CRON != yes ] because the quotes ensure that the statement will be evaluated with an expression to the left of the != even if the