aboutsummaryrefslogtreecommitdiffstats
path: root/sos/plugins/networking.py
diff options
context:
space:
mode:
Diffstat (limited to 'sos/plugins/networking.py')
-rw-r--r--sos/plugins/networking.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/sos/plugins/networking.py b/sos/plugins/networking.py
index 9dd096dc..b0b92a55 100644
--- a/sos/plugins/networking.py
+++ b/sos/plugins/networking.py
@@ -35,13 +35,11 @@ class networking(sos.plugintools.PluginBase):
the command. If they aren't loaded, there can't possibly be any
relevant rules in that table """
- cmd = "/sbin/iptables -t "+tablename+" -nvL"
(status, output, time) = self.callExtProg("/sbin/lsmod | grep -q "+tablename)
if status == 0:
+ cmd = "/sbin/iptables -t "+tablename+" -nvL"
self.collectExtOutput(cmd)
- else:
- self.writeTextToCommand(cmd,"IPTables module "+tablename+" not loaded\n")
def setup(self):
self.addCopySpec("/proc/net")