From 3be590637f919313f2bceabf1bc45d69c2541547 Mon Sep 17 00:00:00 2001 From: barate Date: Mon, 8 Apr 2013 14:59:24 +0000 Subject: [PATCH] Don't print the content of /tmp on stdout when launching a remote container --- src/Container/SALOME_ContainerManager.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()); -- 2.39.2