summaryrefslogtreecommitdiffstats
path: root/core/command
diff options
context:
space:
mode:
authorBjoern Schiessle <schiessle@owncloud.com>2015-09-21 13:30:04 +0200
committerLukas Reschke <lukas@owncloud.com>2015-09-21 16:48:14 +0200
commit03e05d5dbcd0f87b7a0a6b8720189d8f5ba311bf (patch)
treef559af096dd3714d7b7e36f1070085cb8121c92f /core/command
parent8b83c6d5a4f69dc078b415020f10ee47c90b8162 (diff)
downloadnextcloud-server-03e05d5dbcd0f87b7a0a6b8720189d8f5ba311bf.tar.gz
nextcloud-server-03e05d5dbcd0f87b7a0a6b8720189d8f5ba311bf.zip
improve description and help output for the encrypt-all and decrypt-all command
Diffstat (limited to 'core/command')
-rw-r--r--core/command/encryption/decryptall.php3
-rw-r--r--core/command/encryption/encryptall.php3
2 files changed, 4 insertions, 2 deletions
diff --git a/core/command/encryption/decryptall.php b/core/command/encryption/decryptall.php
index c71ba5f04c7..a8560ce88bb 100644
--- a/core/command/encryption/decryptall.php
+++ b/core/command/encryption/decryptall.php
@@ -101,7 +101,8 @@ class DecryptAll extends Command {
parent::configure();
$this->setName('encryption:decrypt-all');
- $this->setDescription(
+ $this->setDescription('Disable server-side encryption and decrypt all files');
+ $this->setHelp(
'This will disable server-side encryption and decrypt all files for '
. 'all users if it is supported by your encryption module. '
. 'Please make sure that no user access his files during this process!'
diff --git a/core/command/encryption/encryptall.php b/core/command/encryption/encryptall.php
index 4ae6ae47836..8294264f212 100644
--- a/core/command/encryption/encryptall.php
+++ b/core/command/encryption/encryptall.php
@@ -93,7 +93,8 @@ class EncryptAll extends Command {
parent::configure();
$this->setName('encryption:encrypt-all');
- $this->setDescription(
+ $this->setDescription('Encrypt all files for all users');
+ $this->setHelp(
'This will encrypt all files for all users. '
. 'Please make sure that no user access his files during this process!'
);