diff options
Diffstat (limited to 'core/command/encryption')
-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!' ); |