Deleted Added
full compact
3c3
< # $FreeBSD: head/etc/rc.d/sshd 180564 2008-07-16 19:50:29Z dougb $
---
> # $FreeBSD: head/etc/rc.d/sshd 221420 2011-05-04 07:34:44Z des $
73c73
< echo "You already have a RSA host key" \
---
> echo "You already have an RSA host key" \
78a79,86
>
> if [ -f /etc/ssh/ssh_host_ecdsa_key ]; then
> echo "You already have an ECDSA host key" \
> "in /etc/ssh/ssh_host_ecdsa_key"
> echo "Skipping protocol version 2 ECDSA Key Generation"
> else
> /usr/bin/ssh-keygen -t ecdsa -f /etc/ssh/ssh_host_ecdsa_key -N ''
> fi
85a94
> ! -f /etc/ssh/ssh_host_ecdsa_key -o \