Bugzilla – Bug 98
sudo does not execute kill command with -ABRT signal
Last modified: 2003-03-13 22:36:03 MST
When "kill -ABRT <pid>" command is executed under sudo the kill command does not recognize ABRT signal (signal -6 did work). spd01:/home/crc >sudo kill -ABRT 101230 Password: bad signal number usage: kill [ -signal | -s signal] pid ... usage: kill -l [exit_status] sudo did let me use the SEGV signal name, however: spd01:/home/crc >sudo kill -SEGV 101230 The OS is AIX running on IBM RS-6000. The version of sudo is 1.6.6.
This is not a bug in sudo. The problem is that your shell's builtin kill command recognizes -ABRT but /usr/bin/kill (or whichever version of kill is in your PATH) does not.