From 2e9d4712faaef9f547c07269db9e605f6f880869 Mon Sep 17 00:00:00 2001 From: Tristan Ancelet Date: Sun, 12 May 2024 22:31:21 -0500 Subject: [PATCH] Moved keyring install to correct place --- bare-arch-install.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bare-arch-install.sh b/bare-arch-install.sh index f2ba09d..d697f34 100755 --- a/bare-arch-install.sh +++ b/bare-arch-install.sh @@ -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