diff options
-rw-r--r-- | sos/plugins/usb.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sos/plugins/usb.py b/sos/plugins/usb.py index 03119572..8e58317b 100644 --- a/sos/plugins/usb.py +++ b/sos/plugins/usb.py @@ -17,15 +17,16 @@ from glob import glob import os class Usb(Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin): - """USB subsystem information + """USB device related information """ plugin_name = "usb" def setup(self): self.add_copy_spec("/sys/bus/usb") - + self.add_cmd_output("lsusb") self.add_cmd_output("lsusb -v") self.add_cmd_output("lsusb -t") + |