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
This commit is contained in:
Ed Maste 2018-02-26 16:36:07 +00:00
parent 896e232a59
commit 0951c73d15
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/head/; revision=51447

View file

@ -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>