From owner-freebsd-questions@FreeBSD.ORG Sat Jun 3 02:13:47 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 B3A8716A421 for ; Sat, 3 Jun 2006 02:13:47 +0000 (UTC) (envelope-from bsd-unix@earthlink.net) Received: from pop-satin.atl.sa.earthlink.net (pop-satin.atl.sa.earthlink.net [207.69.195.63]) by mx1.FreeBSD.org (Postfix) with ESMTP id 61B8143D46 for ; Sat, 3 Jun 2006 02:13:47 +0000 (GMT) (envelope-from bsd-unix@earthlink.net) Received: from fl-71-54-28-212.dhcp.sprint-hsd.net ([71.54.28.212] helo=kt.weeeble.com) by pop-satin.atl.sa.earthlink.net with smtp (Exim 3.36 #10) id 1FmLe6-0000V0-00 for freebsd-questions@freebsd.org; Fri, 02 Jun 2006 22:13:46 -0400 Date: Fri, 2 Jun 2006 22:14:29 -0400 From: Randy Pratt To: freebsd-questions@freebsd.org Message-Id: <20060602221429.79e9f748.bsd-unix@earthlink.net> In-Reply-To: References: <20060602164309.9863f9d8.bsd-unix@earthlink.net> X-Mailer: Sylpheed version 2.2.5 (GTK+ 2.8.18; i386-portbld-freebsd6.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: How to get networker backup software 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: Sat, 03 Jun 2006 02:13:47 -0000 On Fri, 2 Jun 2006 19:01:38 -0300 "Donald Teed" wrote: > As far as I know, the security issues are moot. The note > I remember seeing said that the default configuration > was problematic. If our backup server is behind a firewall, > and we always config things after installing, I can't > see how the security issue is relevant enough to rip > it out of ports. It is far better to have a security issue > awaiting resolution than to have zero backup capability. > > The ports skeleton we have is on one machine and > shared by NFS to the rest. It is updated nightly so > the old one is gone. We do have the tarball > in distfiles, but I don't see a Makefile, etc. > > How do I find it from CVS source? Is there a pointer on > where to find that? You could get a complete tree just before the port was removed by setting a date in a cvsup file. Its been awhile since I've done this but here's a modified example from an old file I still had: *default host=cvsup4.FreeBSD.org (or whatever) *default base=/usr/oldtree *default prefix=/home/oldtree *default release=cvs *default delete use-rel-suffix *default date=2006.03.31.00.00.00 *default compress ports-all I think that date is about 8 hours before the ports were removed from the tree but you might want to check the dates of any other ports you might need to be sure the date is correct for what you need. You can check these with cvsweb: http://www.freebsd.org/cgi/cvsweb.cgi/ Note that the base and prefix are different so that you don't clobber your existing ports tree. Choose something appropriate for your situation. Instead of using "ports-all", you might save some bandwidth by only selecting the ports modules you need. They are listed in: /usr/share/examples/cvsup/ports-supfile You would have selected entries in your supfile like: ports-base ports-sysutils After that, just cvsup using the new supfile. That should get what is needed and then you'll be able to add them to your NFS tree. It sounds like you're quite familar with these ports. Perhaps if you can get them security patched you might consider becoming the maintainer for the ports and get them back in the tree. Perhaps this will get you closer to where you need to be. If anyone spots anything I missed, be sure to comment. Randy --