Description of problem: Latest version of ksh does not understand the named kill signal, TERM. Latest version - pdksh-5.2.14-21.5 Output from kill -l 15 15 Terminated Previous version I was using - pdksh-5.2.14-21 Output from kill -l 15 TERM Terminated Infact, most of the signals are no longer named in the latest ksh. Version-Release number of selected component (if applicable): pdksh-5.2.14-21.5 How reproducible: Try to trap TERM signals then run a command with a non-zero exit status. Steps to Reproduce: 1. Create a ksh script as follows #!/bin/ksh trap 'echo "TRAP"' TERM ls -la /tmp/file_that_doesnt_exist echo $? Actual results: ls: /tmp/file_that_doesnt_exist: No such file or directory TRAP 1 Expected results: ls: /tmp/file_that_doesnt_exist: No such file or directory 1 Additional info:
This looks to be a duplicate of https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=200148.
*** This bug has been marked as a duplicate of 200148 ***