From e0631598b48eb75e1b6a9de44089ff4ac6fb254d Mon Sep 17 00:00:00 2001 From: Philipp Gesang Date: Tue, 8 Aug 2017 09:14:12 +0200 Subject: [PATCH] update help usage strings wrt. crypto in backup.py --- backup.py | 9 ++++----- 1 files changed, 4 insertions(+), 5 deletions(-) diff --git a/backup.py b/backup.py index 3ad0c88..b9984c8 100644 --- a/backup.py +++ b/backup.py @@ -78,10 +78,9 @@ if __name__ == "__main__": '' open uncompressed; 'gz' open with gzip compression; 'bz2' open with bzip2 compression; - '#gz.aes128' open an aes128 encrypted stream of gzip - compressed tar blocks; - '#aes128' open an aes128 encrypted stream of tar - blocks. + '#gz' encrypted stream of individually + compressed tar blocks. + To enable encryption, supply a password. """) parser.add_argument("-t", "--targetpath", help="Target path directory.") parser.add_argument("-s", "--sourcepath", help="Source path directory.") @@ -90,7 +89,7 @@ if __name__ == "__main__": default=epw.strip () if epw is not None else None, help="Password for symmetric encryption. " "The environment variable PDTCRYPT_PASSWORD should " - "be preferred to this.") + "be preferred to this. Enables encryption.") parser.add_argument("-v", "--volsize", default=None, help="Maximum volume size, in megabytes.") parser.add_argument("-r", "--restore", action='store_true', -- 1.7.1