diff options
author | Dan Horák <dan@danny.cz> | 2018-05-02 18:58:18 +0200 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2018-06-06 15:56:50 +0100 |
commit | c080d421cc1fa89dc6e438a54835fe4203fc7838 (patch) | |
tree | 1cd782a86a847c132573afa2dac58c1b1933bf05 | |
parent | ff74942afb5b1f0d2b840204325f709fa0896452 (diff) | |
download | sos-c080d421cc1fa89dc6e438a54835fe4203fc7838.tar.gz |
[s390] gather info about HW crypto
Fixes: #1283
Resolves: #1284
Signed-off-by: Dan Horák <dan@danny.cz>
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r-- | sos/plugins/s390.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sos/plugins/s390.py b/sos/plugins/s390.py index 6da3064d..0066000d 100644 --- a/sos/plugins/s390.py +++ b/sos/plugins/s390.py @@ -54,7 +54,10 @@ class S390(Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin): "find /proc/s390dbf -type f", "qethconf list_all", "lsqeth", - "lszfcp" + "lszfcp", + "lszcrypt", + "icainfo", + "icastats" ]) r = self.call_ext_prog("ls /dev/dasd?") dasd_dev = r['output'] |