From owner-svn-doc-all@freebsd.org Sat Jun 16 20:20:35 2018 Return-Path: Delivered-To: svn-doc-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CA5641021739; Sat, 16 Jun 2018 20:20:35 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7C88C6E22B; Sat, 16 Jun 2018 20:20:35 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5E03531A6; Sat, 16 Jun 2018 20:20:35 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5GKKZZq073737; Sat, 16 Jun 2018 20:20:35 GMT (envelope-from eadler@FreeBSD.org) Received: (from eadler@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5GKKZHC073700; Sat, 16 Jun 2018 20:20:35 GMT (envelope-from eadler@FreeBSD.org) Message-Id: <201806162020.w5GKKZHC073700@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: eadler set sender to eadler@FreeBSD.org using -f From: Eitan Adler Date: Sat, 16 Jun 2018 20:20:35 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r51850 - head/en_US.ISO8859-1/articles/committers-guide X-SVN-Group: doc-head X-SVN-Commit-Author: eadler X-SVN-Commit-Paths: head/en_US.ISO8859-1/articles/committers-guide X-SVN-Commit-Revision: 51850 X-SVN-Commit-Repository: doc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Jun 2018 20:20:36 -0000 Author: eadler Date: Sat Jun 16 20:20:34 2018 New Revision: 51850 URL: https://svnweb.freebsd.org/changeset/doc/51850 Log: Committer guide: remove non-exististant seed reference The seed file referenced does not exist anymore. Modified: head/en_US.ISO8859-1/articles/committers-guide/article.xml Modified: head/en_US.ISO8859-1/articles/committers-guide/article.xml ============================================================================== --- head/en_US.ISO8859-1/articles/committers-guide/article.xml Sat Jun 16 20:10:41 2018 (r51849) +++ head/en_US.ISO8859-1/articles/committers-guide/article.xml Sat Jun 16 20:20:34 2018 (r51850) @@ -599,11 +599,14 @@ You need a Passphrase to protect your secret key. - The hassle of a local - svnsync mirror probably is not worth it - unless the network connectivity situation or other factors - demand it. If it is needed, see the end of this chapter for - information on how to set one up. + The hassle of a local svnsync mirror + probably is not worth it unless the network connectivity + situation or other factors demand it. Starting + a fresh mirror from empty takes a long time. + Expect a minimum of 10 hours with high speed connectivity. + If international links are involved, expect this to take + four to ten times longer. Another option is to use the + git mirror. @@ -1858,52 +1861,6 @@ U stable/9/share/man/man4/netmap.4 correct location. Instead of a couple of lines of text, the repository journal grows an entire new copy of the file. This is a waste. - - - - Setting up a <application>svnsync</application> - Mirror - - Avoid setting up a svnsync - mirror unless there is a very good reason for it. Such - reasons might be to support multiple local read-only client - machines, or if the network bandwidth is limited. Starting - a fresh mirror from empty would take a very long time. - Expect a minimum of 10 hours for high speed connectivity. - If international links are involved, expect this to take - four to ten times longer. - - A far better option is to grab a seed file. It is large - (~1GB) but will consume less network traffic and take less - time to fetch than a svnsync will. There are several ways - to do this: - - &prompt.user; rsync -va --partial --progress freefall:/home/peter/svnmirror-base-r179637.tbz2 . - - &prompt.user; rsync -va --partial --progress rsync://repoman.freebsd.org:50873/svnseed/svnmirror-base-r215629.tar.xz . - - &prompt.user; fetch ftp://ftp.freebsd.org/pub/FreeBSD/development/subversion/svnmirror-base-r221445.tar.xz - - Extract the file to somewhere like - home/svnmirror/base/. - Then, update it, so that it fetches changes since the last - revision in the archive: - - &prompt.user; svnsync sync file:///home/svnmirror/base - - Now, set that up to run from &man.cron.8;, do - checkouts locally, set up a svnserve server for local - machines to talk to, etc. - - The seed mirror is set to fetch from - svn://svn.freebsd.org/base. The - configuration for the mirror is stored in - revprop 0 on the local mirror. To see - the configuration, try: - - &prompt.user; svn proplist -v --revprop -r 0 file:///home/svnmirror/base - - Use propset to change things.