svn commit: r51447 - head/en_US.ISO8859-1/books/handbook/jails

Ed Maste emaste at FreeBSD.org
Mon Feb 26 16:36:08 UTC 2018


Author: emaste (src committer)
Date: Mon Feb 26 16:36:07 2018
New Revision: 51447
URL: https://svnweb.freebsd.org/changeset/doc/51447

Log:
  Fix command to extract multiple sets for jail creation
  
  In the example for extracting multiple distribution sets the path and
  case was incorrect.
  
  There's still more adjustment to be made here: not all sets are listed,
  and one of the unlisted ones (lib32) does not exist on all archs, but
  at least the example command should work.
  
  Reviewed by:	gjb
  Approved by:	gjb
  Sponsored by:	The FreeBSD Foundation
  Differential Revision:	https://reviews.freebsd.org/D14517

Modified:
  head/en_US.ISO8859-1/books/handbook/jails/chapter.xml

Modified: head/en_US.ISO8859-1/books/handbook/jails/chapter.xml
==============================================================================
--- head/en_US.ISO8859-1/books/handbook/jails/chapter.xml	Mon Feb 26 12:56:08 2018	(r51446)
+++ head/en_US.ISO8859-1/books/handbook/jails/chapter.xml	Mon Feb 26 16:36:07 2018	(r51447)
@@ -227,7 +227,7 @@
 
     <para>To install everything except the kernel:</para>
 
-    <screen>&prompt.root; <userinput>for <replaceable>sets</replaceable> in BASE PORTS; do tar -xf /mnt/FREEBSD_INSTALL/USR/FREEBSD_DIST/$<replaceable>sets</replaceable>.TXZ -C $DESTDIR ; done</userinput></screen>
+    <screen>&prompt.root; <userinput>for set in base ports; do tar -xf /mnt/usr/freebsd-dist/$set.txz -C $DESTDIR ; done</userinput></screen>
 
     <para>The &man.jail.8; manual page explains the procedure for
       building a jail:</para>


More information about the svn-doc-all mailing list