Fix osTicket volume report

This commit is contained in:
2Shirt 2021-03-18 21:52:29 -06:00
parent 2b98eeabca
commit 7c1a9f4bdc

View file

@ -96,7 +96,8 @@ STATUS_COLORS = {
'TimedOut': 'RED', 'TimedOut': 'RED',
} }
VOLUME_REGEX = re.compile( VOLUME_REGEX = re.compile(
r'^(?P<dev>.*?) (?P<result>Failed to mount|Mounted on|\S+$)' r'^(?P<dev>.*?) '
r'(?P<result>(APFS|CoreStorage) container|Failed to mount|Mounted on|\S+$)'
r'($| (?P<path>.*) \((?P<details>.*)\))' r'($| (?P<path>.*) \((?P<details>.*)\))'
) )