Re: logwatch schedule control

2010-05-13 Thread Steve Blackwell
On Wed, 12 May 2010 15:31:07 -0700
jack craig  wrote:

> AARRGGg!
> 
> No wonder i couldnt find the control, its out of control!!!
> 
> Thx Tom!
> 
> On 05/12/2010 03:03 PM, Tom Horsley wrote:
> > On Wed, 12 May 2010 14:33:18 -0700
> > jack craig wrote:
> >
> >
> >> I am assuming its whatever drives /etc/cron.daily, but where???
> >>  
> > You are suffering from anacron's disease :-).
> >
> > In recent fedoras all the default /etc/cron.* jobs are now driven
> > by anacron from the /etc/anacrontab file and the old /etc/crontab
> > file is empty by default. Anacron just runs things at some random
> > time when it happens to think of it, which drives me crazy (because
> > it always manages to pick a inappropriate time due to Murphy's
> > Law).
> >
> > I move all the entries out of /etc/anacrontab, given them specific
> > times to run, and format them to go in the /etc/crontab file.
> > I run nothing in anacron (and every release it gets harder and
> > harder to turn it off).
> >
> 

Check out http://en.wikipedia.org/wiki/Anacron  for a brief explanation
of anacron.

Steve

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: logwatch schedule control

2010-05-13 Thread Mike Chambers
On Wed, 2010-05-12 at 12:54 -0700, jack craig wrote:
> Hi Folks,
> 
> On my FC11, logwatch has suddenly begun arriving at 10:48 am. i prefer 
> it runs over night.
> 
> I am not finding its crontab control, any clues out there ?
> I see /etc/cron.daily, .hourly, .weekly, but i see no entries fro the 
> logwatch script.

/etc/anacrontab file is what I would look at.  The "START_HOURS_RANGE"
setting is what your looking for.


-- 
Mike Chambers
Madisonville, KY

"Best lil town on Earth!"

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: logwatch schedule control

2010-05-12 Thread Tim
On Wed, 2010-05-12 at 18:03 -0400, Tom Horsley wrote:
> Anacron just runs things at some random time when it happens to think
> of it

Do you not have a /etc/cron.d/anacron file that sets when anacron is
supposed to be fired up?

# Run anacron once a day, after regular cron.{daily,weekly,monthly} jobs
# have started, to catch up on any missed jobs. 
02 5 * * * root /usr/sbin/runanacron

If that has managed to run (i.e. your computer was on at the right
time), then it shouldn't run again.  If it hasn't done its daily run,
then it tries to catch up by doing it at some other time.

-- 
[...@localhost ~]$ uname -r
2.6.27.25-78.2.56.fc9.i686

Don't send private replies to my address, the mailbox is ignored.  I
read messages from the public lists.



-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: logwatch schedule control

2010-05-12 Thread jack craig
AARRGGg!

No wonder i couldnt find the control, its out of control!!!

Thx Tom!

On 05/12/2010 03:03 PM, Tom Horsley wrote:
> On Wed, 12 May 2010 14:33:18 -0700
> jack craig wrote:
>
>
>> I am assuming its whatever drives /etc/cron.daily, but where???
>>  
> You are suffering from anacron's disease :-).
>
> In recent fedoras all the default /etc/cron.* jobs are now driven
> by anacron from the /etc/anacrontab file and the old /etc/crontab
> file is empty by default. Anacron just runs things at some random
> time when it happens to think of it, which drives me crazy (because
> it always manages to pick a inappropriate time due to Murphy's
> Law).
>
> I move all the entries out of /etc/anacrontab, given them specific
> times to run, and format them to go in the /etc/crontab file.
> I run nothing in anacron (and every release it gets harder and
> harder to turn it off).
>

-- 
Jack Craig
Software Engineer
831.461.7100 x120
www.extraview.com

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: logwatch schedule control

2010-05-12 Thread jack craig
that says what to run, but not when to run it.

I am looking for the time control option.

Thx!

On 05/12/2010 02:56 PM, Phil Savoie wrote:
> On 12/05/2010 17:33, jack craig wrote:
>
>> Thx Phil,
>>
>> I too have that file, but!
>>
>> I don't see any time oriented config info there.
>>
>> I am assuming its whatever drives /etc/cron.daily, but where???
>>
>> Thx for your time to reply!
>>
>>  
> Hi Jack,
>
> I have in /etc/cron.daily directory a symlink:
>
>
> lrwxrwxrwx 1 root root   39 Aug 30  2009 0logwatch ->
> /usr/share/logwatch/scripts/logwatch.pl
>
> Does this help?
>
> Phil
>

-- 
Jack Craig
Software Engineer
831.461.7100 x120
www.extraview.com

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: logwatch schedule control

2010-05-12 Thread Tom Horsley
On Wed, 12 May 2010 14:33:18 -0700
jack craig wrote:

> I am assuming its whatever drives /etc/cron.daily, but where???

You are suffering from anacron's disease :-).

In recent fedoras all the default /etc/cron.* jobs are now driven
by anacron from the /etc/anacrontab file and the old /etc/crontab
file is empty by default. Anacron just runs things at some random
time when it happens to think of it, which drives me crazy (because
it always manages to pick a inappropriate time due to Murphy's
Law).

I move all the entries out of /etc/anacrontab, given them specific
times to run, and format them to go in the /etc/crontab file.
I run nothing in anacron (and every release it gets harder and
harder to turn it off).
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: logwatch schedule control

2010-05-12 Thread Phil Savoie
On 12/05/2010 17:33, jack craig wrote:
> Thx Phil,
> 
> I too have that file, but!
> 
> I don't see any time oriented config info there.
> 
> I am assuming its whatever drives /etc/cron.daily, but where???
> 
> Thx for your time to reply!
> 

Hi Jack,

I have in /etc/cron.daily directory a symlink:


lrwxrwxrwx 1 root root   39 Aug 30  2009 0logwatch ->
/usr/share/logwatch/scripts/logwatch.pl

Does this help?

Phil
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: logwatch schedule control

2010-05-12 Thread jack craig
Thx Phil,

I too have that file, but!

I don't see any time oriented config info there.

I am assuming its whatever drives /etc/cron.daily, but where???

Thx for your time to reply!

On 05/12/2010 01:47 PM, Phil Savoie wrote:
> On 12/05/2010 15:54, jack craig wrote:
>
>> Hi Folks,
>>
>> On my FC11, logwatch has suddenly begun arriving at 10:48 am. i prefer
>> it runs over night.
>>
>> I am not finding its crontab control, any clues out there ?
>> I see /etc/cron.daily, .hourly, .weekly, but i see no entries fro the
>> logwatch script.
>>
>> thx,jackc...
>>
>>  
> Hi Jack,
>
> On my centos5.4 box my config file is here:
>
>   /usr/share/logwatch/default.conf/logwatch.conf
>
> HTH
>
> Phil
>

-- 
Jack Craig
Software Engineer
831.461.7100 x120
www.extraview.com

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: logwatch schedule control

2010-05-12 Thread Phil Savoie
On 12/05/2010 15:54, jack craig wrote:
> Hi Folks,
> 
> On my FC11, logwatch has suddenly begun arriving at 10:48 am. i prefer 
> it runs over night.
> 
> I am not finding its crontab control, any clues out there ?
> I see /etc/cron.daily, .hourly, .weekly, but i see no entries fro the 
> logwatch script.
> 
> thx,jackc...
> 
Hi Jack,

On my centos5.4 box my config file is here:

 /usr/share/logwatch/default.conf/logwatch.conf

HTH

Phil
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


logwatch schedule control

2010-05-12 Thread jack craig
Hi Folks,

On my FC11, logwatch has suddenly begun arriving at 10:48 am. i prefer 
it runs over night.

I am not finding its crontab control, any clues out there ?
I see /etc/cron.daily, .hourly, .weekly, but i see no entries fro the 
logwatch script.

thx,jackc...

-- 
Jack Craig
Software Engineer
831.461.7100 x120
www.extraview.com

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines