1-get-initial-setup-working #2

Merged
hygienic-books merged 92 commits from 1-get-initial-setup-working into main 2023-03-05 03:02:48 +00:00
Showing only changes of commit c27f0e9c7c - Show all commits

View File

@ -210,12 +210,9 @@ function mount_system () {
zfs mount "${zpool_name}"'/root/'"${zfs_arch_dataset_name}"
zfs mount -a
declare efi_part
efi_part="$(get_parts 'efi')"
if we_have_exactly_one_part 'efi' "${efi_part}"; then
mkdir -p '/mnt/efi'
mount "${efi_part}" '/mnt/efi'
fi
local efi_part="$(select_part 'efi')"
mkdir -p '/mnt/efi'
mount "${efi_part}" '/mnt/efi'
}
function copy_zpool_cache () {