Remove similar messages when auto mounting partitions made in part_auto()

This commit is contained in:
natemaia 2019-10-02 23:01:59 -07:00
parent 899db6d262
commit ab56f28a63

View File

@ -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