From owner-cvs-src-old@FreeBSD.ORG Sun May 29 21:24:31 2011 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8745D1065674 for ; Sun, 29 May 2011 21:24:31 +0000 (UTC) (envelope-from bz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 763668FC12 for ; Sun, 29 May 2011 21:24:31 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id p4TLOVd5049343 for ; Sun, 29 May 2011 21:24:31 GMT (envelope-from bz@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id p4TLOVxK049342 for cvs-src-old@freebsd.org; Sun, 29 May 2011 21:24:31 GMT (envelope-from bz@repoman.freebsd.org) Message-Id: <201105292124.p4TLOVxK049342@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to bz@repoman.freebsd.org using -f From: "Bjoern A. Zeeb" Date: Sun, 29 May 2011 21:24:20 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/bsdinstall/scripts Makefile netconfig netconfig_ipv4 netconfig_ipv6 X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 May 2011 21:24:31 -0000 bz 2011-05-29 21:24:20 UTC FreeBSD src repository Modified files: usr.sbin/bsdinstall/scripts Makefile netconfig Added files: usr.sbin/bsdinstall/scripts netconfig_ipv4 netconfig_ipv6 Log: SVN rev 222468 on 2011-05-29 21:24:20Z by bz Split netconfig into three parts: - netconfig - what auto will call which in turn will check for IPv4 and IPv6 to be available and ask the user to configure it by calling - netconfig_ipv4 doing DHCP and static IPv4 addresses, and - netconfig_ipv6 doing rtsol and static IPv6 addresses, and then checking, querying and updating resolv.conf upon return. Both DHCP and rtsol (in the future) might update resolv.conf already so we seed ourselves from that file if available. Reviewed by: nwhitehorn Sponsored by: The FreeBSD Foundation Sponsored by: iXsystems Revision Changes Path 1.4 +2 -1 src/usr.sbin/bsdinstall/scripts/Makefile 1.2 +116 -43 src/usr.sbin/bsdinstall/scripts/netconfig 1.1 +85 -0 src/usr.sbin/bsdinstall/scripts/netconfig_ipv4 (new) 1.1 +149 -0 src/usr.sbin/bsdinstall/scripts/netconfig_ipv6 (new)