From 75957f0bad2fda5e5f8813faf30714702c79c808 Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Fri, 9 Jun 2023 23:31:42 +0200 Subject: [PATCH] Initialize pacman key during setup --- scripts/Arch/OS/setup.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/Arch/OS/setup.sh b/scripts/Arch/OS/setup.sh index b2aca6aa..2a40272d 100755 --- a/scripts/Arch/OS/setup.sh +++ b/scripts/Arch/OS/setup.sh @@ -24,6 +24,9 @@ loadkeys "$ARCH_KEYMAP"; timedatectl set-timezone "$ARCH_TIMEZONE"; . "./partition.sh"; +pacman-key --init; +pacman-key --populate; + pacstrap -K "$ARCH_MOUNT_ROOT" \ base \ linux \