diff options
author | Bjoern Schiessle <schiessle@owncloud.com> | 2015-09-21 13:30:04 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2015-09-21 16:48:14 +0200 |
commit | 03e05d5dbcd0f87b7a0a6b8720189d8f5ba311bf (patch) | |
tree | f559af096dd3714d7b7e36f1070085cb8121c92f /core/command | |
parent | 8b83c6d5a4f69dc078b415020f10ee47c90b8162 (diff) | |
download | nextcloud-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.php | 3 | ||||
-rw-r--r-- | core/command/encryption/encryptall.php | 3 |
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!' ); |