From e3adab13e837cbca619a7914b76c72e4d1e6d4d8 Mon Sep 17 00:00:00 2001 From: Werner Llácer Date: Tue, 1 Feb 2022 16:44:39 +0100 Subject: Issue923 (#927) * Correct definition of btrfs standard layout * Solving issue 923. Standarize keyword "wipe" to signal the need of formatting a FS * flake8 complains --- archinstall/lib/disk/user_guides.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'archinstall/lib/disk/user_guides.py') diff --git a/archinstall/lib/disk/user_guides.py b/archinstall/lib/disk/user_guides.py index 4ba22b4f..25db14ea 100644 --- a/archinstall/lib/disk/user_guides.py +++ b/archinstall/lib/disk/user_guides.py @@ -46,7 +46,7 @@ def suggest_single_disk_layout(block_device :BlockDevice, "size" : "203MiB", "boot" : True, "encrypted" : False, - "format" : True, + "wipe" : True, "mountpoint" : "/boot", "filesystem" : { "format" : "fat32" @@ -65,7 +65,7 @@ def suggest_single_disk_layout(block_device :BlockDevice, "type" : "primary", "start" : "206MiB", "encrypted" : False, - "format" : True, + "wipe" : True, "mountpoint" : "/" if not using_subvolumes else None, "filesystem" : { "format" : default_filesystem @@ -114,7 +114,7 @@ def suggest_single_disk_layout(block_device :BlockDevice, "start" : f"{min(block_device.size, 20)}GiB", "size" : "100%", "encrypted" : False, - "format" : True, + "wipe" : True, "mountpoint" : "/home", "filesystem" : { "format" : default_filesystem @@ -166,7 +166,7 @@ def suggest_multi_disk_layout(block_devices :List[BlockDevice], "size" : "203MiB", "boot" : True, "encrypted" : False, - "format" : True, + "wipe" : True, "mountpoint" : "/boot", "filesystem" : { "format" : "fat32" @@ -183,7 +183,7 @@ def suggest_multi_disk_layout(block_devices :List[BlockDevice], "start" : "206MiB", "size" : "100%", "encrypted" : False, - "format" : True, + "wipe" : True, "mountpoint" : "/", "filesystem" : { "format" : default_filesystem @@ -198,7 +198,7 @@ def suggest_multi_disk_layout(block_devices :List[BlockDevice], "start" : "1MiB", "size" : "100%", "encrypted" : False, - "format" : True, + "wipe" : True, "mountpoint" : "/home", "filesystem" : { "format" : default_filesystem -- cgit v1.2.3-54-g00ecf