From 9a2a3ff3f23842dd6880084e94c0453e431b18da Mon Sep 17 00:00:00 2001 From: Chad Nelson Date: Sat, 25 Nov 2023 12:04:38 -0700 Subject: [PATCH] Fixed issue with missing /boot/efi directory --- msg/machine.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/msg/machine.scm b/msg/machine.scm index f6948a5..893276a 100644 --- a/msg/machine.scm +++ b/msg/machine.scm @@ -141,7 +141,7 @@ (system "mv ~/.guix/home/guix-user.qcow2 ~/.guix/qemu/") (start) (sleep 15) - (system "ssh -o StrictHostKeyChecking=no -i $HOME/.guix/ssh-cert/msg_rsa admin@127.0.0.1 -p 9001 'sudo mkdir /Users'") + (system "ssh -o StrictHostKeyChecking=no -i $HOME/.guix/ssh-cert/msg_rsa admin@127.0.0.1 -p 9001 'sudo mkdir /Users /boot/efi'") (system "ssh -o StrictHostKeyChecking=no -i $HOME/.guix/ssh-cert/msg_rsa admin@127.0.0.1 -p 9001 'sudo shutdown'") (display "\nMSG is ready to be started. Run 'msg machine start' to begin.\n")) (display "MSG already initialized. Please run `msg machine reinit` if you would like to recreate it."))