From owner-freebsd-stable Wed Mar 21 23:40: 1 2001 Delivered-To: freebsd-stable@freebsd.org Received: from sdmail0.sd.bmarts.com (sdmail0.sd.bmarts.com [209.247.77.155]) by hub.freebsd.org (Postfix) with ESMTP id 671A037B718; Wed, 21 Mar 2001 23:39:58 -0800 (PST) (envelope-from gordont@bluemtn.net) Received: from localhost (gordont@localhost) by sdmail0.sd.bmarts.com (8.11.3/8.11.2/BMA1.1) with ESMTP id f2M7dUh07005; Wed, 21 Mar 2001 23:39:30 -0800 (PST) Date: Wed, 21 Mar 2001 23:39:30 -0800 (PST) From: Gordon Tetlow X-X-Sender: To: Jordan Hubbard Cc: , , , Subject: Re: Is it necessary install kerberos in FreeBSD 4.2 and 4.3? In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG So to actually make a point (rather than just illustrate it). Here's the patch: --- dist.c.orig Wed Mar 21 23:38:28 2001 +++ dist.c Wed Mar 21 23:38:39 2001 @@ -361,7 +361,7 @@ { distReset(NULL); Dists = DIST_BIN | DIST_CRYPTO; - CRYPTODists |= DIST_CRYPTO_BIN; + CRYPTODists |= DIST_CRYPTO_CRYPTO; distVerifyFlags(); return DITEM_SUCCESS | DITEM_REDRAW; } This installs just the binary crypto and not the krb stuff. -gordon On Wed, 21 Mar 2001, Gordon Tetlow wrote: > Just browsed through the sysinstall sources a bit: > > in dist.c: > > int > distSetMinimum(dialogMenuItem *self) > { > distReset(NULL); > Dists = DIST_BIN | DIST_CRYPTO; > CRYPTODists |= DIST_CRYPTO_BIN; > distVerifyFlags(); > return DITEM_SUCCESS | DITEM_REDRAW; > } > > and in dist.h: > > #define DIST_CRYPTO_BIN \ > ( DIST_CRYPTO_CRYPTO | DIST_CRYPTO_KERBEROS4 | DIST_CRYPTO_KERBEROS5 ) > > There you have it. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message