From be981cb9e63196ae7fbaae1eb56407a6fb95389f Mon Sep 17 00:00:00 2001 From: Kris Lamoureux Date: Wed, 4 Mar 2020 23:54:50 -0500 Subject: [PATCH] Remove comments --- vmseed.txt | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/vmseed.txt b/vmseed.txt index 0349124..ad87a58 100644 --- a/vmseed.txt +++ b/vmseed.txt @@ -140,14 +140,12 @@ d-i finish-install/reboot_in_progress note # Just before install finishes, install SSH keys into root d-i preseed/late_command string \ - \ - # Install SSH keys \ + mkdir -p /target/root/.ssh; \ wget -O /target/root/.ssh/authorized_keys \ https://raw.githubusercontent.com/krislamo/bootstrap/master/authorized_keys; \ - \ - # Update /etc/issue with IP and SSH fingerprint \ + 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; \ + awk '{split($2, a, ":"); print a[2]}' >> /target/etc/issue;