From 83d205196bd056695c939c7239a41d87066b6851 Mon Sep 17 00:00:00 2001 From: Nagy Karoly Gabriel Date: Tue, 7 Feb 2012 20:50:20 +0100 Subject: [PATCH] openssh: introduced Elliptic Curve DSA in OpenSShs postinstall. Elliptic Curve DSA is searched at start nowdays --- security/openssh/openssh.postinstall | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/security/openssh/openssh.postinstall b/security/openssh/openssh.postinstall index bb87722fe..f2247c551 100644 --- a/security/openssh/openssh.postinstall +++ b/security/openssh/openssh.postinstall @@ -3,7 +3,7 @@ # This copyright note is auto-generated by ./scripts/Create-CopyPatch. # # Filename: package/.../openssh/openssh.postinstall -# Copyright (C) 2006 The OpenSDE Project +# Copyright (C) 2006 - 2012 The OpenSDE Project # # More information can be found in the files COPYING and README. # @@ -15,7 +15,7 @@ SSHDIR=/etc/ssh mkdir -p $SSHDIR -for t in rsa1 dsa rsa; do +for t in rsa1 dsa rsa ecdsa; do case "$t" in rsa1) keyfile=$SSHDIR/ssh_host_key ;; *) keyfile=$SSHDIR/ssh_host_${t}_key ;;