I have in /etc/crontab a job defined like this:
0,10,20,30,40,50 * * * * root /usr/lib/cgi-bin/awstats.pl -config=example.com -update
I deleted this job but cron sends me still emails every ten minutes.
How can I stop these emails?
My OS is Raspbian 9 Stretch.
Thanks a lot
sudo nano /etc/crontabthen i deleted it out ofsudo nano /etc/crontab– wolf Sep 19 '18 at 20:05crontab -eto edit a user cron table orsudo crontab -eto edit the root cron table. Doing anything else will have unknown consequences. – joan Sep 19 '18 at 21:50