diff options
author | Jan Zeleny <jzeleny@redhat.com> | 2010-10-14 09:37:34 +0200 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2010-10-19 16:02:47 -0400 |
commit | 7051a30300d12163e890e4ec4b9a765567679a8b (patch) | |
tree | 96d9f734fef8d052a4747756b11538f18e5d261f /src/man | |
parent | ed9d7d200bda6f5e1a177054fb483fb48c6ad54e (diff) | |
download | sssd-7051a30300d12163e890e4ec4b9a765567679a8b.tar.gz sssd-7051a30300d12163e890e4ec4b9a765567679a8b.tar.bz2 sssd-7051a30300d12163e890e4ec4b9a765567679a8b.zip |
Option krb5_server is now used to store a list of KDCs instead of krb5_kdcip.
For the time being, if krb5_server is not found, still falls back to
krb5_kdcip with a warning. If both options are present in config file,
krb5_server has a higher priority.
Fixes: #543
Diffstat (limited to 'src/man')
-rw-r--r-- | src/man/sssd-krb5.5.xml | 10 | ||||
-rw-r--r-- | src/man/sssd.conf.5.xml | 2 |
2 files changed, 9 insertions, 3 deletions
diff --git a/src/man/sssd-krb5.5.xml b/src/man/sssd-krb5.5.xml index dbe96a1d..e9c2cac3 100644 --- a/src/man/sssd-krb5.5.xml +++ b/src/man/sssd-krb5.5.xml @@ -63,7 +63,7 @@ for details on the configuration of a SSSD domain. <variablelist> <varlistentry> - <term>krb5_kdcip (string)</term> + <term>krb5_server (string)</term> <listitem> <para> Specifies the list of IP addresses or hostnames @@ -77,6 +77,12 @@ for more information, refer to the <quote>SERVICE DISCOVERY</quote> section. </para> + <para> + This option was named <quote>krb5_kdcip</quote> in + earlier releases of SSSD. While the legacy name is recognized + for the time being, users are advised to migrate their config + files to use <quote>krb5_server</quote> instead. + </para> </listitem> </varlistentry> @@ -270,7 +276,7 @@ <programlisting> [domain/FOO] auth_provider = krb5 - krb5_kdcip = 192.168.1.1 + krb5_server = 192.168.1.1 krb5_realm = EXAMPLE.COM </programlisting> </para> diff --git a/src/man/sssd.conf.5.xml b/src/man/sssd.conf.5.xml index d00de05c..60ba169b 100644 --- a/src/man/sssd.conf.5.xml +++ b/src/man/sssd.conf.5.xml @@ -917,7 +917,7 @@ ldap_uri = ldap://ldap.example.com ldap_search_base = dc=example,dc=com auth_provider = krb5 -krb5_kdcip = kerberos.example.com +krb5_server = kerberos.example.com krb5_realm = EXAMPLE.COM cache_credentials = true |