summaryrefslogtreecommitdiff
path: root/server/config/testconfigs
AgeCommit message (Collapse)AuthorFilesLines
2009-12-10Fix processing of Boolean values in SSSDConfigStephen Gallagher2-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.
2009-12-08Handle spaces in config parserJakub Hrozek1-2/+2
Fixes: #301
2009-11-03Make config_file_version a hidden setting in SSSDConfig APIStephen Gallagher2-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
2009-10-12Add new SSSDConfig python APIStephen Gallagher3-0/+52
Also adds unit tests for the SSSDConfig API