From 354d3f0b4f9952fc0868c253f0b03bf698fe99d9 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Thu, 21 Sep 2017 04:26:52 +0200 Subject: [PATCH] fix docs: --compression lz4 is the default now, fixes #3034 (cherry picked from commit c88528512f146a5e9a144c4f35b940d8d45041a1) --- docs/usage/create.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/usage/create.rst b/docs/usage/create.rst index 8e4a2e036..4586b30f5 100644 --- a/docs/usage/create.rst +++ b/docs/usage/create.rst @@ -41,11 +41,11 @@ Examples # Backup a raw device (must not be active/in use/mounted at that time) $ dd if=/dev/sdx bs=10M | borg create /path/to/repo::my-sdx - - # No compression (default) - $ borg create /path/to/repo::arch ~ + # No compression + $ borg create --compression none /path/to/repo::arch ~ - # Super fast, low compression - $ borg create --compression lz4 /path/to/repo::arch ~ + # Super fast, low compression (default) + $ borg create /path/to/repo::arch ~ # Less fast, higher compression (N = 0..9) $ borg create --compression zlib,N /path/to/repo::arch ~