Re: root mail - cronjob

2000-10-13 Thread staf wagemakers
On Thu, Oct 12, 2000 at 02:23:01PM -0500, Techgod wrote: > I have this cronjob running, and everytime it runs, it emails root, to say > it was successful. How do I get it to stop sending the email? Add "> /dev/null 2>&1" to the script's line in your crontab. Example: * * * * * /path/to/script

Re: root mail - cronjob

2000-10-12 Thread Colin Watson
"Techgod" <[EMAIL PROTECTED]> wrote: >I have this cronjob running, and everytime it runs, it emails root, to say >it was successful. How do I get it to stop sending the email? Don't send anything to standard output or standard error. Anything the cron job outputs will be mailed to whatever the MA

root mail - cronjob

2000-10-12 Thread Techgod
I have this cronjob running, and everytime it runs, it emails root, to say it was successful. How do I get it to stop sending the email? Wayne