From ddb5d7e50ffef50b41186199de2a9b6b21850bf8 Mon Sep 17 00:00:00 2001 From: Thierry Parmentelat Date: Tue, 15 Mar 2016 15:46:24 +0100 Subject: [PATCH] nothing wrong with a stderr being not empty --- nepi/resources/linux/application.py | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/nepi/resources/linux/application.py b/nepi/resources/linux/application.py index 4874a0e0..e4086b8d 100644 --- a/nepi/resources/linux/application.py +++ b/nepi/resources/linux/application.py @@ -729,10 +729,15 @@ class LinuxApplication(ResourceManager): = self.node.check_errors(self.run_home) if err: - msg = "Failed to execute command '{}'"\ - .format(self.get("command")) - self.error(msg, out, err) - self.do_fail() + # Thierry : there's nothing wrong with a non-empty + # stderr, is there ? + #msg = "Failed to execute command '{}'"\ + # .format(self.get("command")) + #self.error(msg, out, err) + #self.do_fail() + # xxx TODO OTOH it would definitely make sense + # to check the exitcode + pass else: self.set_stopped() -- 2.43.0