Salome HOME
Don't print the content of /tmp on stdout when launching a remote container
authorbarate <barate>
Mon, 8 Apr 2013 14:59:24 +0000 (14:59 +0000)
committerbarate <barate>
Mon, 8 Apr 2013 14:59:24 +0000 (14:59 +0000)
src/Container/SALOME_ContainerManager.cxx

index 3747da5d710ecd8af12e423066803cd35d502fb3..d174bce548459e0fcf3e8ec72db370dbb8e5467d 100644 (file)
@@ -515,7 +515,7 @@ SALOME_ContainerManager::LaunchContainer(const Engines::ContainerParameters& par
     command += " ";
     ASSERT(getenv("NSPORT"));
     command += getenv("NSPORT"); // port of CORBA name server
-    command += " ls /tmp";
+    command += " ls /tmp >/dev/null 2>&1";
 
     // Launch remote command
     int status = system(command.c_str());