Browse Source

Merge pull request #4021 from ThomasWaldmann/init-warning-1.1

init: add warning to store both key and passphrase at safe place(s)
TW 6 năm trước cách đây
mục cha
commit
059ad8d8ae
1 tập tin đã thay đổi với 7 bổ sung0 xóa
  1. 7 0
      src/borg/archiver.py

+ 7 - 0
src/borg/archiver.py

@@ -286,6 +286,13 @@ class Archiver:
                 '\n'
                 'See https://borgbackup.readthedocs.io/en/stable/changes.html#pre-1-0-9-manifest-spoofing-vulnerability '
                 'for details about the security implications.', shlex.quote(path))
+
+        if key.NAME != 'plaintext':
+            logger.warning(
+                '\n'
+                'IMPORTANT: you will need both KEY AND PASSPHRASE to access this repo!\n'
+                'Use "borg key export" to export the key, optionally in printable format.\n'
+                'Write down the passphrase. Store both at safe place(s).\n')
         return self.exit_code
 
     @with_repository(exclusive=True, manifest=False)