diff options
author | Bryn M. Reeves <bmr@redhat.com> | 2017-03-27 17:49:20 +0100 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2017-03-27 17:49:20 +0100 |
commit | 44ff28c16043b5aebdbaa5d7c2f0c98bb740bab8 (patch) | |
tree | 67060a26ec8ef132f0279d34e6f3c4334c58d130 | |
parent | c9f661107c67244c2b7d4822bb344c54df67b058 (diff) | |
download | sos-44ff28c16043b5aebdbaa5d7c2f0c98bb740bab8.tar.gz |
[powerpc] remove lsvpd family commands from plugin
lsvpd family commands captures information, which can be extracted from
/var/lib/lsvpd. So, avoid capturing duplicate information by skipping
the execution of these command.
Signed-off-by: Mukesh Ojha <mukesh02 linux vnet ibm com>
Reviewed-by: Kamalesh Babulal <kamalesh linux vnet ibm com>
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r-- | sos/plugins/powerpc.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sos/plugins/powerpc.py b/sos/plugins/powerpc.py index 9252cf2c..517175ca 100644 --- a/sos/plugins/powerpc.py +++ b/sos/plugins/powerpc.py @@ -56,10 +56,7 @@ class PowerPC(Plugin, RedHatPlugin, UbuntuPlugin, DebianPlugin): "ppc64_cpu --cores-on", "ppc64_cpu --run-mode", "ppc64_cpu --frequency", - "ppc64_cpu --dscr", - "lscfg -vp", - "lsmcode -A", - "lsvpd --debug" + "ppc64_cpu --dscr" ]) if ispSeries: @@ -70,7 +67,6 @@ class PowerPC(Plugin, RedHatPlugin, UbuntuPlugin, DebianPlugin): "/var/log/platform" ]) self.add_cmd_output([ - "lsvio -des", "servicelog --dump", "servicelog_notify --list", "usysattn", |