git: 812db4dd4c - main - handbook/zfs: Change zfs send -P into zfs send -p
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 21 Apr 2022 12:41:38 UTC
The branch main has been updated by salvadore (ports committer):
URL: https://cgit.FreeBSD.org/doc/commit/?id=812db4dd4c06da4988e63b0cd810bfcb3f8cf98b
commit 812db4dd4c06da4988e63b0cd810bfcb3f8cf98b
Author: Lorenzo Salvadore <salvadore@FreeBSD.org>
AuthorDate: 2022-04-20 23:38:30 +0000
Commit: Lorenzo Salvadore <salvadore@FreeBSD.org>
CommitDate: 2022-04-21 12:41:19 +0000
handbook/zfs: Change zfs send -P into zfs send -p
The handbook refers to the -P flag which according to zfs-send(8) means
(machine) parsable output, but the desired effect is for the properties
to be included in the send.
Change -P to -p, which zfs-send(8) identifies as the flag to include
properties.
Approved by: doc (debdrup), gerald (mentor)
Differential Revision: https://reviews.freebsd.org/D35015
---
documentation/content/en/books/handbook/zfs/_index.adoc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/documentation/content/en/books/handbook/zfs/_index.adoc b/documentation/content/en/books/handbook/zfs/_index.adoc
index 3f9a2a457d..7ded43019d 100644
--- a/documentation/content/en/books/handbook/zfs/_index.adoc
+++ b/documentation/content/en/books/handbook/zfs/_index.adoc
@@ -2245,7 +2245,7 @@ Sending the differences alone took much less time to transfer and saved disk spa
This is useful when replicating over a slow network or one charging per transferred byte.
A new file system, _backup/mypool_, is available with the files and data from the pool _mypool_.
-Specifying `-P` copies the dataset properties including compression settings, quotas, and mount points.
+Specifying `-p` copies the dataset properties including compression settings, quotas, and mount points.
Specifying `-R` copies all child datasets of the dataset along with their properties.
Automate sending and receiving to create regular backups on the second pool.