1

I use Logwatch to track what is going on on one of my Fedora 11 boxes. Since updating it from an older Fedora release I now get 2 copies of the same information to my inbox. I cannot find where this might be getting duplicated. I was assuming it might be in the cron.daily and/or cron.logwatch but I am not sure what I should be looking for with regard to a duplicate being created.

ricbax
  • 169
  • 1
  • 12
  • No bounty will be started for this, I have followed the instructions below and they do not reveal a solution. – ricbax Nov 11 '09 at 15:30

3 Answers3

1

I removed the anacron rpm from my system and problem was solved!

ricbax
  • 169
  • 1
  • 12
0

I'd just grep -r logwatch /etc/cron* and see if there are two files talking about logwatch.

womble
  • 96,255
  • 29
  • 175
  • 230
0

Make sure there aren't two instances of cron running. The following command should only output one pid.

pgrep -l cron
emills
  • 774
  • 1
  • 4
  • 15