Merge pull request #8015 from nextcloud/backport/8014/stable23

[stable23] Warn about disabling encryption without decrypting all the files
This commit is contained in:
Louis 2022-02-09 15:10:16 +01:00 committed by GitHub
commit a6dd8ac6d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -267,10 +267,14 @@ maintenance mode, and then disable your encryption module with this command::
occ maintenance:mode --on
occ encryption:disable
occ encryption:decrypt-all
Take it out of maintenance mode when you are finished::
occ maintenance:mode --off
.. warning:: Disabling encryption without decrypting all the files will lead to decryption errors in the future as this state causes unpredictable behaviors.
.. note:: The ``occ encryption:decrypt-all`` can take a lot of time. You can run one user at a time like so: ``occ encryption:decrypt-all <user-id>``.
Files not encrypted
-------------------