From 8fef42d6b969a49a674f04888a8d595258d75f8e Mon Sep 17 00:00:00 2001 From: Mikita Iwanowski Date: Thu, 14 Nov 2024 13:36:00 +0100 Subject: [PATCH] comments --- providers/os/connection/snapshot/partition.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/providers/os/connection/snapshot/partition.go b/providers/os/connection/snapshot/partition.go index 60f88ccad..532868829 100644 --- a/providers/os/connection/snapshot/partition.go +++ b/providers/os/connection/snapshot/partition.go @@ -8,9 +8,12 @@ import ( ) type PartitionInfo struct { - Name string + // Device name (e.g. /dev/sda1) + Name string + // Filesystem type (e.g. ext4) FsType string + // Resolved device name aliases (e.g. /dev/sda1 -> /dev/nvme0n1p1) Aliases []string // (optional) Label is the partition label Label string