OSDN Git Service

Remove similar messages when auto mounting partitions made in part_auto()
authornatemaia <natemaia10@gmail.com>
Thu, 3 Oct 2019 06:01:59 +0000 (23:01 -0700)
committernatemaia <natemaia10@gmail.com>
Thu, 3 Oct 2019 06:01:59 +0000 (23:01 -0700)
archlabs-installer

index aa46fb3..00a9f96 100755 (executable)
@@ -5,7 +5,7 @@
 # Some ideas and code reworked from other resources
 # AIF, Cnichi, Calamares, Arch Wiki.. Credit where credit is due
 
-VER=2.0.74
+VER=2.0.75
 
 # bulk default values {
 
@@ -1033,7 +1033,6 @@ select_filesystem()
 select_efi_partition()
 {
        if [[ $AUTO_BOOT_PART ]]; then
-               msg "EFI Boot Partition" "\nUsing partition created during automatic format.\n" 2
                BOOT_PART="$AUTO_BOOT_PART"
                return 0 # were done here
        else
@@ -1072,7 +1071,6 @@ select_efi_partition()
 select_boot_partition()
 {
        if [[ $AUTO_BOOT_PART && ! $LVM ]]; then
-               msg "Boot Partition" "\nUsing partition created during automatic format.\n" 2
                BOOT_PART="$AUTO_BOOT_PART"
                return 0 # were done here
        else
@@ -1110,7 +1108,7 @@ select_root_partition()
 {
        if [[ $AUTO_ROOT_PART && -z $LVM && -z $LUKS ]]; then
                ROOT_PART="$AUTO_ROOT_PART"
-               msg "Root Partition (/)" "\nUsing partition created during automatic format.\n" 2
+               msg "Mount Menu" "\nUsing partitions created during automatic format.\n" 2
                part_mount "$ROOT_PART" || { ROOT_PART=''; return 1; }
                return 0  # we're done here
        else