Skip to content

Commit

Permalink
regex fix to handle
Browse files Browse the repository at this point in the history
  • Loading branch information
r-dailey committed Oct 1, 2024
1 parent e1fb479 commit d77a5ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lisa/tools/mount.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ class Mount(Tool):

# /dev/da1p1 on /mnt/resource (ufs, local, soft-updates)
_partition_info_regex_bsd = re.compile(
r"\s*/dev/(?P<name>.*)\s+on\s+(?P<mount_point>.*)\s+"
r"\s*(?:\/dev\/|zroot\/)(?P<name>.*)\s+on\s+(?P<mount_point>.*)\s+"
r"(\((?P<type>.*),(?P<options>.*)\))"
)

Expand Down

0 comments on commit d77a5ac

Please sign in to comment.