summaryrefslogtreecommitdiffstats
path: root/server/config/testconfigs
Commit message (Collapse)AuthorAgeFilesLines
* Fix processing of Boolean values in SSSDConfigStephen Gallagher2009-12-102-0/+44
| | | | | | | 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.
* Handle spaces in config parserJakub Hrozek2009-12-081-2/+2
| | | | Fixes: #301
* Make config_file_version a hidden setting in SSSDConfig APIStephen Gallagher2009-11-032-0/+83
| | | | | | | | 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
* Add new SSSDConfig python APIStephen Gallagher2009-10-123-0/+52
Also adds unit tests for the SSSDConfig API