Date: Tue, 16 Aug 2016 20:02:15 +0000 (UTC) From: Mark Felder <feld@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r420300 - head/net-mgmt/rancid3 Message-ID: <201608162002.u7GK2FFP049011@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: feld Date: Tue Aug 16 20:02:15 2016 New Revision: 420300 URL: https://svnweb.freebsd.org/changeset/ports/420300 Log: net-mgmt/rancid3: Fix SSH on FreeBSD 11.0 RANCID by default attempts to ssh to devices with 3des as the cipher. This no longer works with OpenSSH in FreeBSD 11 as you need to be more specific. Changing this to 3des-cbc works for now, but future versions of OpenSSH will break this as well. Unfortunately this will break RANCID as many network devices do not support modern ciphers, but we will have to deal with that when the time comes. MFH: 2016Q3 Modified: head/net-mgmt/rancid3/Makefile Modified: head/net-mgmt/rancid3/Makefile ============================================================================== --- head/net-mgmt/rancid3/Makefile Tue Aug 16 19:32:57 2016 (r420299) +++ head/net-mgmt/rancid3/Makefile Tue Aug 16 20:02:15 2016 (r420300) @@ -3,7 +3,7 @@ PORTNAME= rancid PORTVERSION= 3.4.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net-mgmt MASTER_SITES= ftp://ftp.shrubbery.net/pub/rancid/ PKGNAMESUFFIX= 3 @@ -59,6 +59,8 @@ pre-everything:: post-patch: ${REINPLACE_CMD} "s|par.1|rancid-par.1|" ${WRKSRC}/man/Makefile.in ${MV} ${WRKSRC}/man/par.1 ${WRKSRC}/man/rancid-par.1 + ${REINPLACE_CMD} "s|3des|3des-cbc|g" ${WRKSRC}/bin/*.in ${WRKSRC}/cloginrc.sample \ + ${WRKSRC}/man/cloginrc.5 ${WRKSRC}/man/clogin.1 post-install: ${LN} -s ${PREFIX}/libexec/${PORTNAME}/rancid-cvs ${STAGEDIR}${PREFIX}/bin
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201608162002.u7GK2FFP049011>