Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
crontab email notify seti
Name: Mr. Crow Date: November 13, 2002 at 09:47:55 Pacific OS: Solaris 8 CPU/Ram: sparc, 1024
Comment:
Hi!
I am running seti from crontab on solaris 8 but every day I receive email that a process has been terminated. How to make it not to send email or how to disable email completely?
Name: chintamani Date: November 13, 2002 at 11:27:59 Pacific
Reply:
Hi,
In your seti script make sure you capture output and error messages into log file. Otherwise any standard output/error messages is mailed to the user running the script.
You can disable sending mails from the system by turing off execute permission on sendmail, mailx and mail binaries, but i would prefer the first option of modifying the scripts.
C
0
Response Number 2
Name: Don Arnett Date: November 13, 2002 at 12:23:02 Pacific
Reply:
Contrary to what chinta said, it appears to me that you are capturing stdout and stderr. Just you're sending them to /dev/null rather than a file.
That was going to be my suggestion, but you are already doing it.
This is off the topic, but if you want to send stdout and stderr to the same place, another way is:
> /dev/null 2>&1
That says to send stderr to the same place as stdout, which was already redirected to /dev/null
Summary: Hi all, I would really appreciate some help to create a bash shell script to do this: 1. run a ping command (e.g. ping -c 10 {ServerName}) 2. (TEST1) find the average ping time value (from ping result...
Summary: Could some help to check out this script or any syntax red or command out. This script will check any files with (gz, GZ, zip or ZIP) extension if check any file failed then send out the email notify...
Summary: Hi, I've created a script that checks some stuff, writes the results to a log file, then mails the log file to me. I've set up the crontab file to run the script everyday at 5:58am, 58 05 * * * /usr/...