aboutsummaryrefslogtreecommitdiffstats
path: root/resources/tools/disk-image-builder/nested/image-patches/05-ssh-hostkeys
diff options
context:
space:
mode:
authorpmikus <pmikus@cisco.com>2021-04-08 12:12:30 +0000
committerpmikus <pmikus@cisco.com>2021-04-08 12:12:30 +0000
commit2c1809bfabcef9d74e9a7da58a694a320733a64f (patch)
tree819298cbf828a4e0aafcc344257dddb5cc5a0a68 /resources/tools/disk-image-builder/nested/image-patches/05-ssh-hostkeys
parentd653bff621c44d0af1f4dcb786e9830362cdac38 (diff)
Remove obsolete image builder
Signed-off-by: pmikus <pmikus@cisco.com> Change-Id: I6cb73a6b9fbbdec2d7127f2457cbe21d12cd3e64
Diffstat (limited to 'resources/tools/disk-image-builder/nested/image-patches/05-ssh-hostkeys')
-rwxr-xr-xresources/tools/disk-image-builder/nested/image-patches/05-ssh-hostkeys11
1 files changed, 0 insertions, 11 deletions
diff --git a/resources/tools/disk-image-builder/nested/image-patches/05-ssh-hostkeys b/resources/tools/disk-image-builder/nested/image-patches/05-ssh-hostkeys
deleted file mode 100755
index de8be15798..0000000000
--- a/resources/tools/disk-image-builder/nested/image-patches/05-ssh-hostkeys
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/sh
-
-# Generate host keys here. This will speed up first boot time ever so slightly.
-# It does however mean that keys are not unique across installations -- which
-# shouldn't be an issue for our use case though.
-
-sudo mkdir -m 0775 -p etc/ssh
-for a in rsa ecdsa ed25519 dsa
-do
- sudo ssh-keygen -f etc/ssh/ssh_host_${a}_key -N "" -t ${a}
-done