diff options
author | Bob Gilligan <gilligan@vyatta.com> | 2010-07-27 19:43:42 -0700 |
---|---|---|
committer | Bob Gilligan <gilligan@vyatta.com> | 2010-07-27 19:43:42 -0700 |
commit | 71b716b7f5e5df1dd4ea6e8a16c7f987381cab8c (patch) | |
tree | 24b543022d67b37b1c67a853df29bc0857d72847 /scripts | |
parent | 3ec558a9e6be6d0c62ef86631a7d81ff7088f3d5 (diff) | |
download | vyatta-cfg-system-71b716b7f5e5df1dd4ea6e8a16c7f987381cab8c.tar.gz vyatta-cfg-system-71b716b7f5e5df1dd4ea6e8a16c7f987381cab8c.zip |
Bugfix 5929: Preserve SSH host keys during image installation.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/install/install-image-existing | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/scripts/install/install-image-existing b/scripts/install/install-image-existing index e8f723a0..27d19f4d 100755 --- a/scripts/install/install-image-existing +++ b/scripts/install/install-image-existing @@ -167,6 +167,21 @@ if [ -f "$VYATTA_CFG_DIR/config.boot" ]; then done fi +if [ -d /etc/ssh ]; then + resp='' + while [ -z "$resp" ]; do + echo 'Would you like to save the SSH host keys from your ' + echo -n 'current configuration? (Yes/No) [Yes]: ' + resp=$(get_response "Yes" "Yes No Y N") + if [ "$resp" == 'yes' ] || [ "$resp" == 'y' ]; then + echo 'Copying SSH keys...' + ndir=${INST_ROOT}/etc/ssh + mkdir -p $ndir + cp -p /etc/ssh/ssh_host* $ndir + fi + done +fi + # postinst hook PI_SCRIPT=${INST_ROOT}${vyatta_sysconfdir}/install-image/postinst if [ -e "$PI_SCRIPT" ]; then |