New: Detect shfs mounts in disk space
This commit is contained in:
parent
fc06e51352
commit
1aef91041e
|
@ -6,11 +6,12 @@ namespace NzbDrone.Mono.Disk
|
||||||
{
|
{
|
||||||
public static class FindDriveType
|
public static class FindDriveType
|
||||||
{
|
{
|
||||||
private static readonly Dictionary<string, DriveType> DriveTypeMap = new Dictionary<string, DriveType>
|
private static readonly Dictionary<string, DriveType> DriveTypeMap = new ()
|
||||||
{
|
{
|
||||||
{ "afpfs", DriveType.Network },
|
{ "afpfs", DriveType.Network },
|
||||||
{ "apfs", DriveType.Fixed },
|
{ "apfs", DriveType.Fixed },
|
||||||
{ "fuse.mergerfs", DriveType.Fixed },
|
{ "fuse.mergerfs", DriveType.Fixed },
|
||||||
|
{ "fuse.shfs", DriveType.Fixed },
|
||||||
{ "fuse.glusterfs", DriveType.Network },
|
{ "fuse.glusterfs", DriveType.Network },
|
||||||
{ "nullfs", DriveType.Fixed },
|
{ "nullfs", DriveType.Fixed },
|
||||||
{ "zfs", DriveType.Fixed }
|
{ "zfs", DriveType.Fixed }
|
||||||
|
|
Loading…
Reference in New Issue