diff options
author | Bjoern Schiessle <schiessle@owncloud.com> | 2015-10-05 12:40:01 +0200 |
---|---|---|
committer | Bjoern Schiessle <schiessle@owncloud.com> | 2015-10-05 12:41:05 +0200 |
commit | bf82015254941a74dfcd00d8b509a2f2a0734904 (patch) | |
tree | f3b4cd05aed7c71d1596dcce1ceb30bd685ff4b9 /lib/private/encryption | |
parent | f4885f6da3048d90d44cd7e78b02e4305b0717dc (diff) | |
download | nextcloud-server-bf82015254941a74dfcd00d8b509a2f2a0734904.tar.gz nextcloud-server-bf82015254941a74dfcd00d8b509a2f2a0734904.zip |
add some output to explain the pre-conditions for decrypt-all
Diffstat (limited to 'lib/private/encryption')
-rw-r--r-- | lib/private/encryption/decryptall.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/private/encryption/decryptall.php b/lib/private/encryption/decryptall.php index c1875f16abd..e19ee6b745f 100644 --- a/lib/private/encryption/decryptall.php +++ b/lib/private/encryption/decryptall.php @@ -119,6 +119,9 @@ class DecryptAll { foreach ($encryptionModules as $moduleDesc) { /** @var IEncryptionModule $module */ $module = call_user_func($moduleDesc['callback']); + $this->output->writeln(''); + $this->output->writeln('Prepare "' . $module->getDisplayName() . '"'); + $this->output->writeln(''); if ($module->prepareDecryptAll($this->input, $this->output, $user) === false) { $this->output->writeln('Module "' . $moduleDesc['displayName'] . '" does not support the functionality to decrypt all files again or the initialization of the module failed!'); return false; |