From 7c1a9f4bdc04b8c22cb6e0f5202b3e27600e95cd Mon Sep 17 00:00:00 2001 From: 2Shirt Date: Thu, 18 Mar 2021 21:52:29 -0600 Subject: [PATCH] Fix osTicket volume report --- scripts/wk/hw/diags.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/wk/hw/diags.py b/scripts/wk/hw/diags.py index 4ad09054..8ec70963 100644 --- a/scripts/wk/hw/diags.py +++ b/scripts/wk/hw/diags.py @@ -96,7 +96,8 @@ STATUS_COLORS = { 'TimedOut': 'RED', } VOLUME_REGEX = re.compile( - r'^(?P.*?) (?PFailed to mount|Mounted on|\S+$)' + r'^(?P.*?) ' + r'(?P(APFS|CoreStorage) container|Failed to mount|Mounted on|\S+$)' r'($| (?P.*) \((?P
.*)\))' )