forked from mirrors/nixpkgs
redis: make masterAuth option optional (#109417)
This commit is contained in:
parent
bfb91bc57f
commit
4171cd53d6
|
@ -144,7 +144,7 @@ in
|
|||
};
|
||||
|
||||
masterAuth = mkOption {
|
||||
type = types.str;
|
||||
type = with types; nullOr str;
|
||||
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
|
||||
|
|
Loading…
Reference in a new issue