X-Git-Url: http://git.onelab.eu/?p=nepi.git;a=blobdiff_plain;f=nepi%2Fresources%2Flinux%2Fapplication.py;h=e4086b8d93156d5514b1b87cc0b25dfeed21f11f;hp=4874a0e04f43e7815cb81ce5f39633a397d2360f;hb=ddb5d7e50ffef50b41186199de2a9b6b21850bf8;hpb=3dbce20386a19286b671fa93cbfed844718ffe68 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()