From owner-cvs-src@FreeBSD.ORG Tue Jun 7 12:29:21 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.ORG Delivered-To: cvs-src@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2869016A41C; Tue, 7 Jun 2005 12:29:21 +0000 (GMT) (envelope-from sobomax@portaone.com) Received: from www.portaone.com (support.portaone.com [195.70.151.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A7EB43D1F; Tue, 7 Jun 2005 12:29:20 +0000 (GMT) (envelope-from sobomax@portaone.com) Received: from [192.168.0.95] (2-zyx-piter-f0285.r5.ll.kw.ua [195.140.246.50]) (authenticated bits=0) by www.portaone.com (8.12.11/8.12.11) with ESMTP id j57CTDjw049835 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 7 Jun 2005 14:29:16 +0200 (CEST) (envelope-from sobomax@portaone.com) Message-ID: <42A59318.4050802@portaone.com> Date: Tue, 07 Jun 2005 15:29:12 +0300 From: Maxim Sobolev Organization: Porta Software Ltd User-Agent: Mozilla Thunderbird 1.0.2 (Windows/20050317) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Brooks Davis References: <200506070449.j574nCXU061621@repoman.freebsd.org> In-Reply-To: <200506070449.j574nCXU061621@repoman.freebsd.org> Content-Type: text/plain; charset=KOI8-U; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV 0.83/918/Tue Jun 7 10:35:05 2005 on www.portaone.com X-Virus-Status: Clean Cc: cvs-src@FreeBSD.ORG, src-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/etc devd.conf network.subr pccard_ether src/etc/defaults rc.conf src/etc/rc.d dhclient netif X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Maxim.Sobolev@portaone.com List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Jun 2005 12:29:21 -0000 Does this make devd(8) obligatory for any machine which receives its IP via DHCP? I think it should be documented somewhere (UPDATING) and enforced by startup scripts if it doesn't yet. -Maxim Brooks Davis wrote: > brooks 2005-06-07 04:49:12 UTC > > FreeBSD src repository > > Modified files: > etc devd.conf network.subr pccard_ether > etc/defaults rc.conf > etc/rc.d dhclient netif > Log: > Support code for the OpenBSD dhclient. This significantly changes the > way interfaces are configured. Some key points: > > - At startup, all interfaces are configured through /etc/rc.d/netif. > - ifconfig_ variables my now mix real ifconfig commands the with > DHCP and WPA directives. For example, this allows media > configuration prior to running dhclient. > - /etc/rc.d/dhclient is not run at startup except by netif to start > dhclient on specific interfaces. > - /etc/pccard_ether calls "/etc/rc.d/netif start " to do most of > it's work. > - /etc/pccard_ether no longer takes additional arguments to pass to > ifconfig. Instead, ifconfig_ variables are now honored in favor > of pccard_ifconfig when available. > - /etc/pccard_ether will only run on interfaces specified in > removable_interfaces, even if pccard_ifconfig is set. > > Revision Changes Path > 1.249 +1 -0 src/etc/defaults/rc.conf > 1.26 +14 -1 src/etc/devd.conf > 1.161 +107 -4 src/etc/network.subr > 1.44 +71 -227 src/etc/pccard_ether > 1.19 +19 -79 src/etc/rc.d/dhclient > 1.13 +2 -2 src/etc/rc.d/netif > > >