You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This line matches on output instead of the success of the command because I struggled to differentiate blkid itself failing, and blkid failing to find a partition on the disk (but executing successfully).
Ideally we remove any std::process::Command stuff, and read from one of several sources (not sure where the right data is):
/sys/block/*
/dev/disk/by-uuid -> read symlinks to /dev/sdxx
/etc/mtab -> partition data
The text was updated successfully, but these errors were encountered:
This line matches on output instead of the success of the command because I struggled to differentiate blkid itself failing, and blkid failing to find a partition on the disk (but executing successfully).
Ideally we remove any std::process::Command stuff, and read from one of several sources (not sure where the right data is):
The text was updated successfully, but these errors were encountered: