Author: jmcd
Date: 2006-05-24 20:06:06 +0000 (Wed, 24 May 2006)
New Revision: 15873

WebSVN: 
http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=15873

Log:
Use short signal names to placate ksh trap.  bash seems to accept either
and even uses them on the manpage.  this should now enable make test on
AIX.

Modified:
   branches/SAMBA_3_0/source/script/tests/test_functions.sh


Changeset:
Modified: branches/SAMBA_3_0/source/script/tests/test_functions.sh
===================================================================
--- branches/SAMBA_3_0/source/script/tests/test_functions.sh    2006-05-24 
19:07:21 UTC (rev 15872)
+++ branches/SAMBA_3_0/source/script/tests/test_functions.sh    2006-05-24 
20:06:06 UTC (rev 15873)
@@ -19,8 +19,8 @@
 samba3_check_or_start() {
        if [ -n "$SERVER_TEST_FIFO" ];then
 
-               trap samba3_stop_sig_kill SIGINT SIGQUIT
-               trap samba3_stop_sig_kill SIGTERM
+               trap samba3_stop_sig_kill INT QUIT
+               trap samba3_stop_sig_kill TERM
 
                if [ -p "$SERVER_TEST_FIFO" ];then
                        return 0;

Reply via email to