Operating System - HP-UX
1838134 Members
3653 Online
110124 Solutions
New Discussion

My cron script returns rc=134

 
SOLVED
Go to solution
Jdamian
Respected Contributor

My cron script returns rc=134

A crontab scheduled script didn't work. The /var/adm/cron/log file shows a rc=134 is returned.

What does it mean ?

Where can I get the return codes ?
1 REPLY 1
John Palmer
Honored Contributor
Solution

Re: My cron script returns rc=134

Hi,

An exit code > 128 indicates that the process has ended abnormally (see man sh-posix).

The actual error is 134 -128 = 6 which from kill -l is a SIGABRT.

man 5 signal gives some more details.

Regards,
John