From b85039b9ed658a4a59c637552a67ca9f2cf843b1 Mon Sep 17 00:00:00 2001 From: Jake Hunsaker Date: Wed, 24 Jun 2020 10:06:31 -0400 Subject: [PATCH] [block] Fix typo in LUKS detection Fixes a typo in detecting LUKS partitions for cryptsetup output collection. Signed-off-by: Jake Hunsaker --- sos/plugins/block.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sos/plugins/block.py b/sos/plugins/block.py index 2af25e7a..69548af6 100644 --- a/sos/plugins/block.py +++ b/sos/plugins/block.py @@ -52,7 +52,7 @@ class Block(Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin): # for LUKS devices, collect cryptsetup luksDump if lsblk['status'] == 0: for line in lsblk['output'].splitlines(): - if 'crypto LUKS' in line: + if 'crypto_LUKS' in line: dev = line.split()[0] self.add_cmd_output('cryptsetup luksDump /dev/%s' % dev) -- 2.26.2