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.py17
1 files changed, 9 insertions, 8 deletions
diff --git a/sos/plugins/networking.py b/sos/plugins/networking.py
index b0b92a55..fbe31f83 100644
--- a/sos/plugins/networking.py
+++ b/sos/plugins/networking.py
@@ -42,14 +42,15 @@ class networking(sos.plugintools.PluginBase):
self.collectExtOutput(cmd)
def setup(self):
- self.addCopySpec("/proc/net")
- self.addCopySpec("/etc/nsswitch.conf")
- self.addCopySpec("/etc/yp.conf")
- self.addCopySpec("/etc/inetd.conf")
- self.addCopySpec("/etc/xinetd.conf")
- self.addCopySpec("/etc/xinetd.d")
- self.addCopySpec("/etc/host*")
- self.addCopySpec("/etc/resolv.conf")
+ self.addCopySpecs([
+ "/proc/net",
+ "/etc/nsswitch.conf",
+ "/etc/yp.conf",
+ "/etc/inetd.conf",
+ "/etc/xinetd.conf",
+ "/etc/xinetd.d",
+ "/etc/host*",
+ "/etc/resolv.conf"])
ifconfigFile=self.collectOutputNow("/sbin/ifconfig -a", root_symlink = "ifconfig")
self.collectExtOutput("/sbin/route -n", root_symlink = "route")
self.collectIPTable("filter")