diff options
author | Igor Pashev <pashev.igor@gmail.com> | 2017-01-12 17:07:00 +0300 |
---|---|---|
committer | Igor Pashev <pashev.igor@gmail.com> | 2017-01-12 17:07:00 +0300 |
commit | 4613aee934a0d6349f3778c97f1b45ad481c2158 (patch) | |
tree | d1ff4349afeba23cc4d3e9f896f45f58e3b05968 /modules/apps/openldap | |
parent | b99beab2b48d3bc8130602d6e8907d8acb3deab3 (diff) | |
download | nixsap-4613aee934a0d6349f3778c97f1b45ad481c2158.tar.gz |
openldap: safer defaults
"ber" can leak passwords.
Diffstat (limited to 'modules/apps/openldap')
-rw-r--r-- | modules/apps/openldap/instance.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/apps/openldap/instance.nix b/modules/apps/openldap/instance.nix index 5ab5e0a..884c13b 100644 --- a/modules/apps/openldap/instance.nix +++ b/modules/apps/openldap/instance.nix @@ -43,7 +43,7 @@ in { "packets" "parse" "pcache" "shell" "stats" "stats2" "sync" "trace" ]); - default = [ "acl" "ber" "config" "conns" ]; + default = [ "acl" "config" ]; }; urlList = mkOption { |