summary refs log tree commit diff
path: root/modules/services/databases/redis.nix
diff options
context:
space:
mode:
authorMathijs Kwik <mathijs@bluescreen303.nl>2013-07-02 06:03:52 +0200
committerMathijs Kwik <mathijs@bluescreen303.nl>2013-07-02 06:04:34 +0200
commita099f7008b75490ca8dcf569f404777b94a7b2e0 (patch)
tree3fa797f230efcb770c381ed784053310354f96a6 /modules/services/databases/redis.nix
parent3d7cc5e2170494fa1844b89737328a7e04f06bc1 (diff)
downloadnixpkgs-a099f7008b75490ca8dcf569f404777b94a7b2e0.tar
nixpkgs-a099f7008b75490ca8dcf569f404777b94a7b2e0.tar.gz
nixpkgs-a099f7008b75490ca8dcf569f404777b94a7b2e0.tar.bz2
nixpkgs-a099f7008b75490ca8dcf569f404777b94a7b2e0.tar.lz
nixpkgs-a099f7008b75490ca8dcf569f404777b94a7b2e0.tar.xz
nixpkgs-a099f7008b75490ca8dcf569f404777b94a7b2e0.tar.zst
nixpkgs-a099f7008b75490ca8dcf569f404777b94a7b2e0.zip
provide a warning on password options that do not follow the read-from-file convention.
Diffstat (limited to 'modules/services/databases/redis.nix')
-rw-r--r--modules/services/databases/redis.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/modules/services/databases/redis.nix b/modules/services/databases/redis.nix
index 9472136e17e..5bc58c73bd6 100644
--- a/modules/services/databases/redis.nix
+++ b/modules/services/databases/redis.nix
@@ -122,12 +122,13 @@ in
         default = null;
         description = ''If the master is password protected (using the requirePass configuration)
         it is possible to tell the slave to authenticate before starting the replication synchronization
-        process, otherwise the master will refuse the slave request.'';
+        process, otherwise the master will refuse the slave request.
+        (STORED PLAIN TEXT, WORLD-READABLE IN NIX STORE)'';
       };
 
       requirePass = mkOption {
         default = null;
-        description = "Password for database";
+        description = "Password for database (STORED PLAIN TEXT, WORLD-READABLE IN NIX STORE)";
         example = "letmein!";
       };