provide a warning on password options that do not follow the read-from-file convention.
This commit is contained in:
parent
3d7cc5e217
commit
a099f7008b
@ -75,7 +75,7 @@ let
|
|||||||
default = "";
|
default = "";
|
||||||
example = "correctHorseBatteryStaple";
|
example = "correctHorseBatteryStaple";
|
||||||
description = "
|
description = "
|
||||||
Password used for SMTP auth.
|
Password used for SMTP auth. (STORED PLAIN TEXT, WORLD-READABLE IN NIX STORE)
|
||||||
";
|
";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -122,12 +122,13 @@ in
|
|||||||
default = null;
|
default = null;
|
||||||
description = ''If the master is password protected (using the requirePass configuration)
|
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
|
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 {
|
requirePass = mkOption {
|
||||||
default = null;
|
default = null;
|
||||||
description = "Password for database";
|
description = "Password for database (STORED PLAIN TEXT, WORLD-READABLE IN NIX STORE)";
|
||||||
example = "letmein!";
|
example = "letmein!";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user