[pve-devel] [PATCH installer 3/3] common: make btrfs disk options uppercase for consistency
Daniel Kral
d.kral at proxmox.com
Wed Nov 20 19:24:14 CET 2024
As XFS and ZFS are spelled in uppercase letters in the installer UI and
BTRFS is usually written in this way too, make the BTRFS string
uppercase too for consistency wrt to the other options.
Signed-off-by: Daniel Kral <d.kral at proxmox.com>
---
I just noticed this while booting up the PVE installer and as it
(vaguely) fits with the theme of this patch series, let's also make the
bootdisk option in the GUI/TUI consistent wrt to the others.
proxmox-installer-common/src/options.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/proxmox-installer-common/src/options.rs b/proxmox-installer-common/src/options.rs
index 58fadf8..37e6260 100644
--- a/proxmox-installer-common/src/options.rs
+++ b/proxmox-installer-common/src/options.rs
@@ -69,7 +69,7 @@ impl fmt::Display for FsType {
FsType::Ext4 => write!(f, "ext4"),
FsType::Xfs => write!(f, "XFS"),
FsType::Zfs(level) => write!(f, "ZFS ({level})"),
- FsType::Btrfs(level) => write!(f, "Btrfs ({level})"),
+ FsType::Btrfs(level) => write!(f, "BTRFS ({level})"),
}
}
}
--
2.39.5
More information about the pve-devel
mailing list