diff options
-rw-r--r-- | sos/plugins/hardware.py | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/sos/plugins/hardware.py b/sos/plugins/hardware.py index 7398656a..762732c3 100644 --- a/sos/plugins/hardware.py +++ b/sos/plugins/hardware.py @@ -15,7 +15,7 @@ from sos.plugins import Plugin, RedHatPlugin, UbuntuPlugin, DebianPlugin from glob import glob -class hardware(Plugin, DebianPlugin, UbuntuPlugin): +class hardware(Plugin): """hardware related information """ @@ -60,3 +60,11 @@ class RedHatHardware(hardware, RedHatPlugin): def setup(self): super(RedHatHardware, self).setup() self.collectExtOutput(glob("/usr/share/rhn/up2date*client/hardware.py")[0]) # RHBZ#572353 + + +class DebianHardware(hardware, DebianPlugin, UbuntuPlugin): + """hardware related information for Debian distribution + """ + + def setup(self): + super(DebianHardware, self).setup() |