Minor modifications to experiment runner
[nepi.git] / src / nepi / resources / linux / application.py
index ca9772d..35a7884 100644 (file)
@@ -644,11 +644,13 @@ class LinuxApplication(ResourceManager):
                     (out, err), proc = self.node.kill(self.pid, self.ppid,
                             sudo = self._sudo_kill)
 
+                    """
                     # TODO: check if execution errors occurred
                     if (proc and proc.poll()) or err:
                         msg = " Failed to STOP command '%s' " % self.get("command")
                         self.error(msg, out, err)
-            
+                    """
+
             super(LinuxApplication, self).do_stop()
 
     def do_release(self):