Remove similar messages when auto mounting partitions made in part_auto()
This commit is contained in:
parent
899db6d262
commit
ab56f28a63
@ -5,7 +5,7 @@
|
|||||||
# Some ideas and code reworked from other resources
|
# Some ideas and code reworked from other resources
|
||||||
# AIF, Cnichi, Calamares, Arch Wiki.. Credit where credit is due
|
# AIF, Cnichi, Calamares, Arch Wiki.. Credit where credit is due
|
||||||
|
|
||||||
VER=2.0.74
|
VER=2.0.75
|
||||||
|
|
||||||
# bulk default values {
|
# bulk default values {
|
||||||
|
|
||||||
@ -1033,7 +1033,6 @@ select_filesystem()
|
|||||||
select_efi_partition()
|
select_efi_partition()
|
||||||
{
|
{
|
||||||
if [[ $AUTO_BOOT_PART ]]; then
|
if [[ $AUTO_BOOT_PART ]]; then
|
||||||
msg "EFI Boot Partition" "\nUsing partition created during automatic format.\n" 2
|
|
||||||
BOOT_PART="$AUTO_BOOT_PART"
|
BOOT_PART="$AUTO_BOOT_PART"
|
||||||
return 0 # were done here
|
return 0 # were done here
|
||||||
else
|
else
|
||||||
@ -1072,7 +1071,6 @@ select_efi_partition()
|
|||||||
select_boot_partition()
|
select_boot_partition()
|
||||||
{
|
{
|
||||||
if [[ $AUTO_BOOT_PART && ! $LVM ]]; then
|
if [[ $AUTO_BOOT_PART && ! $LVM ]]; then
|
||||||
msg "Boot Partition" "\nUsing partition created during automatic format.\n" 2
|
|
||||||
BOOT_PART="$AUTO_BOOT_PART"
|
BOOT_PART="$AUTO_BOOT_PART"
|
||||||
return 0 # were done here
|
return 0 # were done here
|
||||||
else
|
else
|
||||||
@ -1110,7 +1108,7 @@ select_root_partition()
|
|||||||
{
|
{
|
||||||
if [[ $AUTO_ROOT_PART && -z $LVM && -z $LUKS ]]; then
|
if [[ $AUTO_ROOT_PART && -z $LVM && -z $LUKS ]]; then
|
||||||
ROOT_PART="$AUTO_ROOT_PART"
|
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; }
|
part_mount "$ROOT_PART" || { ROOT_PART=''; return 1; }
|
||||||
return 0 # we're done here
|
return 0 # we're done here
|
||||||
else
|
else
|
||||||
|
Reference in New Issue
Block a user