diff --git a/plinth/modules/storage/__init__.py b/plinth/modules/storage/__init__.py index 7b29265e6..835170e03 100644 --- a/plinth/modules/storage/__init__.py +++ b/plinth/modules/storage/__init__.py @@ -159,7 +159,7 @@ def _get_disks_from_df(): def get_filesystem_type(mount_point='/'): """Return the type of the filesystem mounted at mountpoint.""" - for partition in psutil.disk_partitions(): + for partition in psutil.disk_partitions(all=True): if partition.mountpoint == mount_point: return partition.fstype