Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2009-12-15 | Use sys.exit instead of exit | Sumit Bose | 1 | -1/+2 | |
2009-12-10 | Run SSSDConfig tests during 'make check' | Stephen Gallagher | 1 | -87/+95 | |
2009-12-10 | Add 'permit' and 'deny' access providers to SSSDConfig API | Stephen Gallagher | 1 | -5/+7 | |
2009-12-10 | Fix processing of Boolean values in SSSDConfig | Stephen Gallagher | 1 | -2/+40 | |
Previously, we were just casting the strings to bool, but this meant that all boolean values were "True". This patch solves the problem and adds regression tests for it. | |||||
2009-12-10 | Add missing SSSDConfig file for IPA for make install | Stephen Gallagher | 1 | -0/+1 | |
Update tests to include IPA options | |||||
2009-12-09 | SSSDConfig.get_domain() should properly detect active state | Stephen Gallagher | 1 | -0/+1 | |
2009-12-09 | SSSDConfig API: fix deactivate_domain() | Stephen Gallagher | 1 | -0/+70 | |
deactivate_domain() would crash if it attempted to deactivate an already-inactive domain | |||||
2009-12-08 | Fix SSSDConfig API bugs around [de-]activation of domains | Stephen Gallagher | 1 | -0/+63 | |
Adds two new public functions: SSSDConfig.activate_domain() SSSDConfig.deactivate_domain() These two functions are used during the save_domain() call to ensure that the active domain list is always kept up to date. | |||||
2009-12-08 | Reduce the verbosity of the SSSDConfigTest | Stephen Gallagher | 1 | -4/+4 | |
Now it will report only failures or final success | |||||
2009-12-08 | Add SSSDDomain.set_name() function to SSSDConfig API | Stephen Gallagher | 1 | -0/+36 | |
This function will change the name of an existing domain | |||||
2009-12-08 | Make SSSDDomain.remove_provider() remove configured options | Stephen Gallagher | 1 | -0/+27 | |
We will remove all options for a provider that are not also required by another configured provider. (For example, we will not remove krb5_realm when deleting the krb5 auth provider if the LDAP provider is in use, since it may still require this argument). | |||||
2009-12-08 | SSSDDomain.remove_provider() requires only the provider type | Stephen Gallagher | 1 | -6/+6 | |
There was no valid reason to require the backend type when specifying a provider to remove. | |||||
2009-12-08 | Handle spaces in config parser | Jakub Hrozek | 1 | -0/+8 | |
Fixes: #301 | |||||
2009-11-20 | Validate Kerberos credentials with local keytab | Sumit Bose | 1 | -0/+6 | |
2009-11-20 | SSSDConfigAPI fixes | Jakub Hrozek | 1 | -262/+56 | |
* splitlist is a function * shared SSSDConfigObject to reduce code duplication * added missing exception class * fixed some typos * remove extra 'pass' in unittests * use assertRaises in unittests | |||||
2009-11-20 | Convert SSSDConfig API to ipachangeconf | Jakub Hrozek | 1 | -4/+8 | |
With this patch, SSSDConfigAPI is able to keep comments and ordering of sections. Fixes: #226 | |||||
2009-11-03 | Add support for option descriptions to SSSDConfig API | Stephen Gallagher | 1 | -3/+3 | |
Addresses https://fedorahosted.org/sssd/ticket/242 related to authconfig integration | |||||
2009-11-03 | Remove magic_private_groups from SSSDConfig API schema | Stephen Gallagher | 1 | -2/+0 | |
2009-11-03 | Make config_file_version a hidden setting in SSSDConfig API | Stephen Gallagher | 1 | -16/+30 | |
The config_file_version should never be changed by the API, so we will hide the option inside the SSSDConfig API and remove it from the schema. Guarantee that the config file is of the correct version | |||||
2009-10-28 | Fix sssd.api.conf with correct entry_cache_timeout | Stephen Gallagher | 1 | -0/+2 | |
Changeset 3a21103f61bf9b60256cc2d0da54b757b634319f moved the wrong option to the domain list, and also didn't update the unit tests. | |||||
2009-10-22 | Bring SSSDConfig API options up-to-date | Stephen Gallagher | 1 | -9/+20 | |
2009-10-12 | Add new SSSDConfig python API | Stephen Gallagher | 1 | -0/+1310 | |
Also adds unit tests for the SSSDConfig API |