From f0f09ca275c31fda4c903b3cef8b7741ddd2da77 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9e=20Floure?= Date: Mon, 1 Mar 2021 09:57:35 +0100 Subject: [PATCH] debian netboot: use new meta key API, add Jo's key --- debian-build-netboot.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/debian-build-netboot.sh b/debian-build-netboot.sh index f4645e5..8392e97 100755 --- a/debian-build-netboot.sh +++ b/debian-build-netboot.sh @@ -44,8 +44,8 @@ cp "$chroot_dir"/boot/vmlinuz-* "$output_dir/kernel-$basename" # Deploy SSH keys. mkdir -p "$chroot_dir/root/.ssh" -for user in tfloure; do - curl "https://meta.recycled.cloud/~$user.keys" >> "$chroot_dir/root/.ssh/authorized_keys" +for user in tfloure jdesroches; do + curl "https://meta.recycled.cloud/keys/$user" >> "$chroot_dir/root/.ssh/authorized_keys" done # Make sure there is /init in the initramfs to avoid kernel panic.