From owner-freebsd-questions@FreeBSD.ORG Mon Sep 29 15:42:38 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0567F1065689 for ; Mon, 29 Sep 2008 15:42:38 +0000 (UTC) (envelope-from fbsd.questions@rachie.is-a-geek.net) Received: from mail.rachie.is-a-geek.net (rachie.is-a-geek.net [66.230.99.27]) by mx1.freebsd.org (Postfix) with ESMTP id C64938FC14 for ; Mon, 29 Sep 2008 15:42:37 +0000 (UTC) (envelope-from fbsd.questions@rachie.is-a-geek.net) Received: from localhost (mail.rachie.is-a-geek.net [192.168.2.101]) by mail.rachie.is-a-geek.net (Postfix) with ESMTP id 3490DAFBC02; Mon, 29 Sep 2008 07:42:36 -0800 (AKDT) From: Mel To: freebsd-questions@freebsd.org Date: Mon, 29 Sep 2008 17:42:35 +0200 User-Agent: KMail/1.9.7 References: <48E0C061.9010200@eskk.nu> <200809291654.05881.fbsd.questions@rachie.is-a-geek.net> <48E0EF10.6020702@eskk.nu> In-Reply-To: <48E0EF10.6020702@eskk.nu> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200809291742.35226.fbsd.questions@rachie.is-a-geek.net> Cc: Leslie Jensen Subject: Re: Which mailing list? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Sep 2008 15:42:38 -0000 On Monday 29 September 2008 17:06:56 Leslie Jensen wrote: > Mel skrev: > > On Monday 29 September 2008 13:47:45 Leslie Jensen wrote: > >> I'm running FreeBSD 7.1-PRERELEASE and I want to keep track on when > >> it's updated so that I can upgrade. I'm on the freebsd-announce list but > >> I'm not sure if it's the right list to follow for this purpose. > >> /Leslie > > > > If your intention is to know when 7.1-RELEASE is available and possibly > > track security advisories afterwards, it is the correct list: > > http://lists.freebsd.org/pipermail/freebsd-announce/2008-February/001172. > >html > > Well, my intention is to be updated even on the prerelease. As I > understand from the answers, it might be somewhat ambiguous. Do you > recommend that I update once a week for example. I understand that not > all modifications will affect me, some will of course others will not Depends what you want. Everything that goes on RELENG_7 branch currently, is a bug fix. Each bug fix, has the risk of introducing a regression bug. If you want to part of the process that tests this PRERELEASE and report any bugs, confirming bugfixes etc, then you should track RELENG_7. Best way to do that is to csup your system in the daily periodic(7). Then you can see if any fixes have been comitted, and rebuild your system. If you simply want to know if your system still works, subscribe to announce to know when to stop testing and to build the final release, and build whenever you have time. The script below my sig, adds csup to daily, when adding daily_csup_enable="YES" to /etc/periodic.conf and putting the proper csup file in the proper loc and/or setting the variables in /etc/periodic.conf. -- Mel $ cat /usr/local/etc/periodic/daily/340.csup #!/bin/sh # if [ -r /etc/defaults/periodic.conf ] then . /etc/defaults/periodic.conf source_periodic_confs fi # Set defaults daily_csup_enable=${daily_csup_enable:-"NO"} daily_csup_files=${daily_csup_files:-"/etc/stable-supfile"} daily_csup_flags=${daily_csup_flags:-"-L2"} case "$daily_csup_enable" in [Yy][Ee][Ss]) echo '' echo 'Running csup:' for file in ${daily_csup_files}; do /usr/bin/csup ${daily_csup_flags} ${file} rc=$((${rc} + $?)) done echo '' ;; *) rc=0;; esac