aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sos/plugins/__init__.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/sos/plugins/__init__.py b/sos/plugins/__init__.py
index 35edcb1c..49da6f26 100644
--- a/sos/plugins/__init__.py
+++ b/sos/plugins/__init__.py
@@ -688,10 +688,6 @@ class Plugin(object):
result = self.get_command_output(exe, timeout=timeout, stderr=stderr,
chroot=chroot, runat=runat,
env=env)
- # 126 means 'found but not executable'
- if result['status'] == 126 or result['status'] == 127:
- return None
-
self._log_debug("collected output of '%s' in %s"
% (exe.split()[0], time() - start))