From 997157e1239c1bfaf53b05e03c49f9e167f17918 Mon Sep 17 00:00:00 2001 From: Mats van Reenen Date: Fri, 9 Sep 2022 20:48:53 +0200 Subject: [PATCH] fix pacman confimation --- in-root.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/in-root.sh b/in-root.sh index 040b66e..67787ee 100644 --- a/in-root.sh +++ b/in-root.sh @@ -37,7 +37,7 @@ run "create user" "useradd --home-dir /home/mreenen --create-hom run "touch authoized keys" "touch /home/mreenen/.ssh/authorized_keys" run "add sshkeys for new user" "curl -o /home/mreenen/.ssh/authorized_keys https://github.com/MReenen.keys" -run "install CRUB" "pacman -S grub efibootmgr" +run "install CRUB" "pacman -S -noconfirm grub efibootmgr" run "create efi directory" "mkdir /boot/efi" run "run grub-install" "grub-install --target=x86_64-efi --bootloader-id=GRUB --efi-directory=/boot/efi" run "make grub config" "grub-mkconfig -o /boot/grub/grub.cfg"