Hi,

        There is a typo in the post-install script that generates keys if none are
found.

# $FreeBSD: ports/security/openssh/Makefile,v 1.82 2002/03/08 05:54:03
dinoex Exp $

post-install:
.if !defined(BATCH)
.if !exists(${PREFIX}/etc/ssh_host_key)
        @${ECHO_MSG} ">> Generating an RSA1 secret host key."
        ${PREFIX}/bin/ssh-keygen -N "" -f ${PREFIX}/etc/ssh_host_key
.endif

Should be (note the '-t rsa1'):

${PREFIX}/bin/ssh-keygen -t rsa1 -N "" -f ${PREFIX}/etc/ssh_host_key

Thanks.

--=--==-====-=============-====-==--=--
    Mike Jakubik - Technical Manager
         [EMAIL PROTECTED]
     Trigger Internet Solutions
       http://www.trigger.net
          (905) 405-0170
--=--==-====-=============-====-==--=--


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-stable" in the body of the message

Reply via email to