summaryrefslogtreecommitdiffstats
path: root/src/providers/ad/ad_opts.h
diff options
context:
space:
mode:
authorJakub Hrozek <jhrozek@redhat.com>2013-11-29 11:39:09 +0100
committerJakub Hrozek <jhrozek@redhat.com>2013-12-19 20:14:37 +0100
commit168396cd93b3f0e42b4842f520f2bcece91274c6 (patch)
tree534570a30c123de5fed6a6ed75166dde0e52b923 /src/providers/ad/ad_opts.h
parent1dced7370e55be16154bbb649606f928765819d0 (diff)
downloadsssd-168396cd93b3f0e42b4842f520f2bcece91274c6.tar.gz
sssd-168396cd93b3f0e42b4842f520f2bcece91274c6.tar.xz
sssd-168396cd93b3f0e42b4842f520f2bcece91274c6.zip
AD: Add a new option to turn off GC lookups
SSSD now defaults to using GC by default. For some environments, for instance those that don't or can't replicate the POSIX attributes to Global Catalog, this might not be desirable. This patch introduces a new option ad_enable_gc, that is enabled by default. Setting this option to false makes the SSSD contact only the LDAP port of AD DCs.
Diffstat (limited to 'src/providers/ad/ad_opts.h')
-rw-r--r--src/providers/ad/ad_opts.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/providers/ad/ad_opts.h b/src/providers/ad/ad_opts.h
index 8022a1627..5b7b1c89f 100644
--- a/src/providers/ad/ad_opts.h
+++ b/src/providers/ad/ad_opts.h
@@ -36,6 +36,7 @@ struct dp_option ad_basic_opts[] = {
{ "krb5_realm", DP_OPT_STRING, NULL_STRING, NULL_STRING},
{ "ad_enable_dns_sites", DP_OPT_BOOL, BOOL_TRUE, BOOL_TRUE },
{ "ad_access_filter", DP_OPT_STRING, NULL_STRING, NULL_STRING},
+ { "ad_enable_gc", DP_OPT_BOOL, BOOL_TRUE, BOOL_TRUE },
DP_OPTION_TERMINATOR
};