Author: toad
Date: 2007-09-26 15:47:01 +0000 (Wed, 26 Sep 2007)
New Revision: 15328

Modified:
   trunk/apps/new_installer/res/unix/bin/detect_port_availability.sh
Log:
be consistent

Modified: trunk/apps/new_installer/res/unix/bin/detect_port_availability.sh
===================================================================
--- trunk/apps/new_installer/res/unix/bin/detect_port_availability.sh   
2007-09-26 15:40:29 UTC (rev 15327)
+++ trunk/apps/new_installer/res/unix/bin/detect_port_availability.sh   
2007-09-26 15:47:01 UTC (rev 15328)
@@ -25,7 +25,7 @@

 # Try to auto-detect the first available port for fcp
 FCP_PORT=9481
-java -jar bin/bindtest.jar $FCP_PORT
+java -jar bin/bindtest.jar $FCP_PORT 2>&1 >/dev/null
 if test $? -ne 0
 then
        FCP_PORT=9482
@@ -35,7 +35,7 @@

 # Try to auto-detect the first available port for console
 CONSOLE_PORT=2323
-java -jar bin/bindtest.jar $CONSOLE_PORT
+java -jar bin/bindtest.jar $CONSOLE_PORT 2>&1 >/dev/null
 if test $? -ne 0
 then
        CONSOLE_PORT=2324


Reply via email to