1
0
mirror of https://github.com/krislamo/preseed synced 2024-11-10 05:50:34 +00:00

Just fingerprint

This commit is contained in:
Kris Lamoureux 2020-03-05 10:27:22 -05:00
parent 56a06faa3b
commit 12c8193d9a
Signed by: kris
GPG Key ID: 3EDA9C3441EDA925

View File

@ -139,11 +139,11 @@ d-i grub-installer/bootdev string /dev/vda
d-i finish-install/reboot_in_progress note
# Just before install finishes, install SSH keys into root
# ethdev=$(ip a | grep -e "^2" | awk '{print substr($2, 1, length($2)-1)}'); \
# echo "$ethdev: \4{$ethdev}" >> /target/etc/issue;
d-i preseed/late_command string \
mkdir -p /target/root/.ssh; \
wget -O /target/root/.ssh/authorized_keys \
https://raw.githubusercontent.com/krislamo/bootstrap/master/authorized_keys; \
ethdev=$(ip a | grep -e "^2" | awk '{print substr($2, 1, length($2)-1)}'); \
echo "$ethdev: \4{$ethdev}" >> /target/etc/issue;
# ssh-keygen -l -f /target/etc/ssh/ssh_host_ecdsa_key.pub | \
# awk '{split($2, a, ":"); print a[2]}' >> /target/etc/issue;
ssh-keygen -l -f /target/etc/ssh/ssh_host_ecdsa_key.pub | \
awk '{split($2, a, ":"); print a[2]}' >> /target/etc/issue;