Fix osTicket volume report
This commit is contained in:
parent
2b98eeabca
commit
7c1a9f4bdc
1 changed files with 2 additions and 1 deletions
|
|
@ -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>.*)\))'
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue