From owner-freebsd-questions@FreeBSD.ORG Thu Apr 7 18:56:06 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 93CD316A4DA for ; Thu, 7 Apr 2005 18:56:06 +0000 (GMT) Received: from mirapoint2.tis.cwru.edu (mirapoint2.TIS.CWRU.Edu [129.22.104.47]) by mx1.FreeBSD.org (Postfix) with ESMTP id F0DC343D55 for ; Thu, 7 Apr 2005 18:56:03 +0000 (GMT) (envelope-from ttt@cwru.edu) Received: from [129.22.151.155] (tagon.ENGINEERING.CWRU.Edu [129.22.151.155]) by mirapoint2.tis.cwru.edu (MOS 3.5.4-GR) with ESMTP id DUO46019 (AUTH ttt); Thu, 7 Apr 2005 14:56:02 -0400 (EDT) Message-ID: <42558243.2090601@cwru.edu> Date: Thu, 07 Apr 2005 14:56:03 -0400 From: Tom Trelvik User-Agent: Mozilla Thunderbird 1.0 (Macintosh/20041206) X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <425574CE.8000105@vfemail.net> In-Reply-To: <425574CE.8000105@vfemail.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: Cannot use cvsup with 5.3-release X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Apr 2005 18:56:06 -0000 Tetsuji "Maverick" Rai wrote: > *default host=cvsup.jp.FreeBSD.org > *default base=/var/db > *default prefix=/usr > *default release=cvs tag=. > *default delete use-rel-suffix > > src-all I don't think you want "tag=." as the default. That would put you the most current sources for the OS, which may have plenty of transient issues you don't want to have to deal with. I use the following supfile regularly. You can see that I set the default tag to RELENG_5_3 which is basically the original release of 5.3 plus security updates (http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/cvs-tags.html). I do that because these are servers that I try to keep as stable as possible. For a personal system, you may prefer to use RELENG_5 to get something more up to date, without being the bleeding edge of CVS updates. You can also see that I specify a different tag to grab for ports, so that I can get the updates on them. *default host=cvsup12.freebsd.org *default base=/var/db *default prefix=/usr *default release=cvs tag=RELENG_5_3 *default delete use-rel-suffix *default compress src-all ports-all tag=. Good luck, Tom