diff options
author | Kazuhito Hagio <k-hagio-ab@nec.com> | 2020-03-12 14:35:07 -0400 |
---|---|---|
committer | Jake Hunsaker <jhunsake@redhat.com> | 2020-03-18 09:49:14 -0400 |
commit | 6164d2f15bf94246a68c5dc48529975903c1aa6c (patch) | |
tree | c9827d9936d6a3ef6288234c6901b53cc5d48edd | |
parent | 436e4a85c703b85695af4c343f6ae3ce3e56def0 (diff) | |
download | sos-6164d2f15bf94246a68c5dc48529975903c1aa6c.tar.gz |
[console] Add new plugin
Add a new plugin for collecting information about console and keyboard
including the status of console and Scroll Lock flag.
Resolves: #1981
Signed-off-by: Kazuhito Hagio <k-hagio-ab@nec.com>
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
-rw-r--r-- | sos/plugins/console.py | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/sos/plugins/console.py b/sos/plugins/console.py new file mode 100644 index 00000000..6549df54 --- /dev/null +++ b/sos/plugins/console.py @@ -0,0 +1,29 @@ +# This file is part of the sos project: https://github.com/sosreport/sos +# +# This copyrighted material is made available to anyone wishing to use, +# modify, copy, or redistribute it subject to the terms and conditions of +# version 2 of the GNU General Public License. +# +# See the LICENSE file in the source distribution for further information. + +from glob import glob +from sos.plugins import Plugin, RedHatPlugin, UbuntuPlugin + + +class Console(Plugin, RedHatPlugin, UbuntuPlugin): + """Console and keyboard information + """ + + plugin_name = 'console' + profiles = ('system',) + packages = ('kbd',) + + def setup(self): + self.add_copy_spec("/proc/consoles") + + self.add_cmd_output("fgconsole") + self.add_cmd_output([ + "kbdinfo -C %s gkbled" % tty for tty in glob("/dev/tty[0-8]") + ]) + +# vim: set et ts=4 sw=4 : |