From: barate Date: Mon, 8 Apr 2013 14:59:24 +0000 (+0000) Subject: Don't print the content of /tmp on stdout when launching a remote container X-Git-Tag: V7_2_0rc1~13 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=3be590637f919313f2bceabf1bc45d69c2541547;p=modules%2Fkernel.git Don't print the content of /tmp on stdout when launching a remote container --- diff --git a/src/Container/SALOME_ContainerManager.cxx b/src/Container/SALOME_ContainerManager.cxx index 3747da5d7..d174bce54 100644 --- a/src/Container/SALOME_ContainerManager.cxx +++ b/src/Container/SALOME_ContainerManager.cxx @@ -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());