Error codes in the /var/cron/log file
Is there any documentation that I can get that will explain what the return codes or exist status codes that I am seeing in the /var/cron directory? For example the log file in this directory is showing:
< root 23784 c Thu May 31 04:00:00 2007 rc=64
I know that this is some sort of error, but am not able to find out what the error mean.
[360 byte] By [
sjames27a] at [2007-11-27 6:30:49]

# 1
> Is there any documentation that I can get that will
> explain what the return codes or exist status codes
> that I am seeing in the /var/cron directory? For
> example the log file in this directory is showing:
>
> < root 23784 c Thu May 31 04:00:00 2007 rc=64
>
> I know that this is some sort of error, but am not
> able to find out what the error mean.
The code is from the program that was run, not from cron.
For instance, the program
#!/bin/sh
exit 24
Will show rc=24 in the log.
So ask the program you're running what the code is.
--
Darren