From owner-svn-doc-head@FreeBSD.ORG Mon Apr 28 20:21:24 2014 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1C98B806; Mon, 28 Apr 2014 20:21:24 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0872C1D13; Mon, 28 Apr 2014 20:21:24 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s3SKLNU8023413; Mon, 28 Apr 2014 20:21:23 GMT (envelope-from wblock@svn.freebsd.org) Received: (from wblock@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s3SKLNRa023412; Mon, 28 Apr 2014 20:21:23 GMT (envelope-from wblock@svn.freebsd.org) Message-Id: <201404282021.s3SKLNRa023412@svn.freebsd.org> From: Warren Block Date: Mon, 28 Apr 2014 20:21:23 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r44682 - head/en_US.ISO8859-1/articles/cvs-freebsd X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Apr 2014 20:21:24 -0000 Author: wblock Date: Mon Apr 28 20:21:23 2014 New Revision: 44682 URL: http://svnweb.freebsd.org/changeset/doc/44682 Log: Restore lost tags. Modified: head/en_US.ISO8859-1/articles/cvs-freebsd/article.xml Modified: head/en_US.ISO8859-1/articles/cvs-freebsd/article.xml ============================================================================== --- head/en_US.ISO8859-1/articles/cvs-freebsd/article.xml Mon Apr 28 20:19:20 2014 (r44681) +++ head/en_US.ISO8859-1/articles/cvs-freebsd/article.xml Mon Apr 28 20:21:23 2014 (r44682) @@ -72,7 +72,7 @@ The first thing to do when setting up a new repository is to tell CVS to initialize it: - &prompt.user; cvs -d path-to-repository init + &prompt.user; cvs -d path-to-repository init This tells CVS to create the CVSROOT administrative directory, where all the @@ -87,12 +87,12 @@ repository. We will assume the FreeBSD default of ncvs for this group. - &prompt.root; pw groupadd ncvs + &prompt.root; pw groupadd ncvs Next, you should &man.chown.8; the directory to the group you just added: - &prompt.root; chown -R :ncvs path-to-your-repository + &prompt.root; chown -R :ncvs path-to-your-repository This ensures that no one can write to the repository without proper group permissions. @@ -128,7 +128,7 @@ CVSROOT and copy the FreeBSD files over your local (untouched) copies: - &prompt.user; cvs -d path-to-your-repository checkout CVSROOT + &prompt.user; cvs -d path-to-your-repository checkout CVSROOT &prompt.user; cd CVSROOT &prompt.user; cp ../CVSROOT-freebsd/* . &prompt.user; cvs add * @@ -541,7 +541,7 @@ will lock yourself out. So make sure everything is as you intend, and then do the following: - &prompt.user; cvs commit -m '- Initial FreeBSD scripts commit' + &prompt.user; cvs commit -m '- Initial FreeBSD scripts commit' @@ -551,7 +551,7 @@ avail file, to make sure everything works as expected. - &prompt.user; cvs commit -f -m 'Forced commit to test the new CVSROOT scripts' avail + &prompt.user; cvs commit -f -m 'Forced commit to test the new CVSROOT scripts' avail If everything works, congratulations! You now have a working setup of the FreeBSD scripts for your repository. If @@ -646,7 +646,7 @@ &prompt.root; mv /usr/bin/cvs /usr/bin/ncvs &prompt.root; mv cvs /usr/bin/cvs -&prompt.root; chown root:ncvs /usr/bin/cvs /usr/bin/ncvs +&prompt.root; chown root:ncvs /usr/bin/cvs /usr/bin/ncvs &prompt.root; chmod o-rx /usr/bin/ncvs &prompt.root; chmod u-w,g+s /usr/bin/cvs @@ -669,7 +669,7 @@ Your wrapper should now be setup. You can of course test this by making a forced commit to the access file: - &prompt.user; cvs commit -f -m 'Forced commit to test the new CVSROOT scripts' access + &prompt.user; cvs commit -f -m 'Forced commit to test the new CVSROOT scripts' access Again, if this fails, check to see whether all of the above steps have been executed correctly.