diff options
author | Saravanan KR <skramaja@redhat.com> | 2018-02-23 15:11:06 +0530 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2018-05-09 14:29:21 +0100 |
commit | 5dc64012d44b329c4897dbb37b03ea03c1ad7abd (patch) | |
tree | 357fa76a7974273552e90db85d756fc3c808cbe5 | |
parent | bfbb57d6bcff69af7e77497e37780407f4d4aac3 (diff) | |
download | sos-5dc64012d44b329c4897dbb37b03ea03c1ad7abd.tar.gz |
[os_net_config] Capture the os-net-config run time data
For DPDK OpenStack deployments with TripleO, os-net-config
binds the DPDK PMD driver to the interface and writes the
details in to the directory /var/lib/os-net-config. Adding
this directory for the report collection.
Resolves: #1224
Signed-off-by: Saravanan KR <skramaja@redhat.com>
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r-- | sos/plugins/os_net_config.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sos/plugins/os_net_config.py b/sos/plugins/os_net_config.py index 25758fc0..e0ceb61c 100644 --- a/sos/plugins/os_net_config.py +++ b/sos/plugins/os_net_config.py @@ -24,6 +24,7 @@ class OsNetConfig(Plugin, RedHatPlugin, UbuntuPlugin, DebianPlugin): def setup(self): self.add_copy_spec("/etc/os-net-config") + self.add_copy_spec("/var/lib/os-net-config") # vim: set et ts=4 sw=4 : |