Moved keyring install to correct place

This commit is contained in:
Tristan Ancelet 2024-05-12 22:31:21 -05:00
parent 50c4834032
commit 2e9d4712fa

View File

@ -300,6 +300,9 @@ A program needed for privelege escalation. Basically to provide a user of an adm
Installing it here because it is not installed by default. An alternative is doas, a utility to perform the same funciton.
"
pacman -Sy archlinux-keyring
pacman-key --init
pacman-key --populate archlinux
pacstrap /mnt base linux linux-headers linux-firmware sudo
## Setting up fstab
@ -397,9 +400,6 @@ usermod -aG wheel $NEW_USER
echo '%wheel ALL=(ALL:ALL) ALL' > /etc/sudoers.d/wheel
"
pacman -Sy archlinux-keyring
pacman-key --init
pacman-key --populate archlinux
arch-chroot /mnt /bin/bash <<< "$INSTALL_SYSTEM"
# END: Work