diff options
author | Jakub Hrozek <jhrozek@redhat.com> | 2010-06-10 15:09:35 +0200 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2010-06-14 16:54:30 -0400 |
commit | f520e7a2f4fe29747f25118621e20b0d89d296fc (patch) | |
tree | 3b6cc7b5ab6ee927c8a9afadbb9487cd7a018dd3 /src/config | |
parent | 946aba311fd280fbd673944c0181063d2600c878 (diff) | |
download | sssd-f520e7a2f4fe29747f25118621e20b0d89d296fc.tar.gz sssd-f520e7a2f4fe29747f25118621e20b0d89d296fc.tar.xz sssd-f520e7a2f4fe29747f25118621e20b0d89d296fc.zip |
Remove krb5_changepw_principal option
Fixes: #531
Diffstat (limited to 'src/config')
-rw-r--r-- | src/config/SSSDConfig.py | 1 | ||||
-rwxr-xr-x | src/config/SSSDConfigTest.py | 3 | ||||
-rw-r--r-- | src/config/etc/sssd.api.d/sssd-ipa.conf | 2 | ||||
-rw-r--r-- | src/config/etc/sssd.api.d/sssd-krb5.conf | 2 |
4 files changed, 3 insertions, 5 deletions
diff --git a/src/config/SSSDConfig.py b/src/config/SSSDConfig.py index 7b9d96c9e..a05b5334a 100644 --- a/src/config/SSSDConfig.py +++ b/src/config/SSSDConfig.py @@ -103,7 +103,6 @@ option_strings = { 'krb5_store_password_if_offline' : _("Store password if offline for later online authentication"), # [provider/krb5/chpass] - 'krb5_changepw_principal' : _('The principal of the change password service'), 'krb5_kpasswd' : _('Server where the change password service is running if not on the KDC'), # [provider/ldap] diff --git a/src/config/SSSDConfigTest.py b/src/config/SSSDConfigTest.py index ea897d716..8cbb0f910 100755 --- a/src/config/SSSDConfigTest.py +++ b/src/config/SSSDConfigTest.py @@ -739,8 +739,7 @@ class SSSDConfigTestSSSDDomain(unittest.TestCase): #Test looking up all provider values options = domain.list_provider_options('krb5') - control_list.extend(['krb5_changepw_principal', - 'krb5_kpasswd']) + control_list.extend(['krb5_kpasswd']) self.assertTrue(type(options) == dict, "Options should be a dictionary") diff --git a/src/config/etc/sssd.api.d/sssd-ipa.conf b/src/config/etc/sssd.api.d/sssd-ipa.conf index 2d267bd0e..ac6817109 100644 --- a/src/config/etc/sssd.api.d/sssd-ipa.conf +++ b/src/config/etc/sssd.api.d/sssd-ipa.conf @@ -81,4 +81,4 @@ ldap_pwd_policy = str, None, false [provider/ipa/access] [provider/ipa/chpass] -krb5_changepw_principal = str, None, false + diff --git a/src/config/etc/sssd.api.d/sssd-krb5.conf b/src/config/etc/sssd.api.d/sssd-krb5.conf index eeb8fe133..76ef8b5b4 100644 --- a/src/config/etc/sssd.api.d/sssd-krb5.conf +++ b/src/config/etc/sssd.api.d/sssd-krb5.conf @@ -12,4 +12,4 @@ krb5_validate = bool, None, false krb5_store_password_if_offline = bool, None, false [provider/krb5/chpass] -krb5_changepw_principal = str, None, false + |