diff options
author | Jakub Hrozek <jhrozek@redhat.com> | 2010-08-09 16:11:00 -0400 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2010-10-13 09:49:36 -0400 |
commit | 6e88b0dcd0352ac1280c1bd8dd0753b90e4014f2 (patch) | |
tree | e41a527ce5d196b64603befcf6fdd4f396393c7e /src/providers/ldap | |
parent | 464e9961f36e47f4c7c5463b4e14a56187da193c (diff) | |
download | sssd-6e88b0dcd0352ac1280c1bd8dd0753b90e4014f2.tar.gz sssd-6e88b0dcd0352ac1280c1bd8dd0753b90e4014f2.tar.bz2 sssd-6e88b0dcd0352ac1280c1bd8dd0753b90e4014f2.zip |
Add KDC to the list of LDAP options
Diffstat (limited to 'src/providers/ldap')
-rw-r--r-- | src/providers/ldap/ldap_common.c | 1 | ||||
-rw-r--r-- | src/providers/ldap/sdap.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/providers/ldap/ldap_common.c b/src/providers/ldap/ldap_common.c index 14bdd285..cf2cd699 100644 --- a/src/providers/ldap/ldap_common.c +++ b/src/providers/ldap/ldap_common.c @@ -61,6 +61,7 @@ struct dp_option default_basic_opts[] = { { "ldap_krb5_keytab", DP_OPT_STRING, NULL_STRING, NULL_STRING }, { "ldap_krb5_init_creds", DP_OPT_BOOL, BOOL_TRUE, BOOL_TRUE }, /* use the same parm name as the krb5 module so we set it only once */ + { "krb5_kdcip", DP_OPT_STRING, NULL_STRING, NULL_STRING }, { "krb5_realm", DP_OPT_STRING, NULL_STRING, NULL_STRING }, { "ldap_pwd_policy", DP_OPT_STRING, { "none" } , NULL_STRING }, { "ldap_referrals", DP_OPT_BOOL, BOOL_TRUE, BOOL_TRUE }, diff --git a/src/providers/ldap/sdap.h b/src/providers/ldap/sdap.h index 4426dac9..a5fab7a9 100644 --- a/src/providers/ldap/sdap.h +++ b/src/providers/ldap/sdap.h @@ -167,6 +167,7 @@ enum sdap_basic_opt { SDAP_SASL_AUTHID, SDAP_KRB5_KEYTAB, SDAP_KRB5_KINIT, + SDAP_KRB5_KDCIP, SDAP_KRB5_REALM, SDAP_PWD_POLICY, SDAP_REFERRALS, |