From owner-freebsd-questions@FreeBSD.ORG Sat Dec 3 17:17:34 2005 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 6EE5616A41F for ; Sat, 3 Dec 2005 17:17:34 +0000 (GMT) (envelope-from lars@gmx.at) Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id 85FED43D5F for ; Sat, 3 Dec 2005 17:17:33 +0000 (GMT) (envelope-from lars@gmx.at) Received: (qmail invoked by alias); 03 Dec 2005 17:17:31 -0000 Received: from 216.248.62.81.cust.bluewin.ch (EHLO [192.168.1.10]) [81.62.248.216] by mail.gmx.net (mp021) with SMTP; 03 Dec 2005 18:17:31 +0100 X-Authenticated: #912863 Message-ID: <4391D32F.3060105@gmx.at> Date: Sat, 03 Dec 2005 18:17:35 +0100 From: lars User-Agent: Mozilla Thunderbird 1.0.7 (X11/20051106) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Ian Lord References: <7.0.0.16.2.20051203115712.054a1c70@msdi.ca> In-Reply-To: <7.0.0.16.2.20051203115712.054a1c70@msdi.ca> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Y-GMX-Trusted: 0 Cc: freebsd-questions@freebsd.org Subject: Re: CVS Server with freebsd 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 Dec 2005 17:17:34 -0000 Ian Lord wrote: > Hi, > > I'm trying to setup a cvs server for our internal development... > > I may be blind, but I didn't find any ports for this in the ports > tree... Do I need to compile it from the source or is there an easier > way (port) > > I saw a pserver wrapper for cvs ( port = cvsd) in the port but not the > actual cvs server You don't need to "install" a CVS server, or port for that matter. I advise you to go to cvshome.org to read the documentation on how to set up a source code repository with CVS. I also recommend not to use pserver if you can avoid it. You can authenticate all CVS users via local accounts and SSH. With two environmant variables CVS_ROOT=... CVS_RSH=... the users then make their local CVS clients use SSH to authenticate with the CVS server and transmit their commits enrypted. In this way you don't need a CVS daemon running on the server. Kind regards Lars