summaryrefslogtreecommitdiffstats
path: root/server/examples/sssd.conf
Commit message (Collapse)AuthorAgeFilesLines
* Remove redundant libPath option from proxy providerStephen Gallagher2009-06-301-2/+0
| | | | | The libPath should be constructed from the libName. There is no benefit to specifying it separately.
* Treat the local provider as a special caseStephen Gallagher2009-05-151-0/+1
| | | | | | | The local provider needs no backend, so we'll create a special provider entry for it called "local" that will not attempt to retrieve provider configuration but will remain in the service list so it can be updated when the config file changes.
* Make reconnection to the Data Provider a global settingStephen Gallagher2009-04-141-0/+3
| | | | | | | Previously, every DP client was allowed to set its own "retries" option. This option was ambiguous, and useless. All DP clients will now use a global option set in the services config called "reconnection_retries"
* Replace the example sssd.conf file with the one used in FedoraStephen Gallagher2009-04-141-32/+71
| | | | | Also remove the [services/infopipe] section, since we're not shipping InfoPipe yet, and that would be confusing.
* Fix a couple of segfaults and timeout checksSimo Sorce2009-04-131-1/+0
|
* Allow configuration of the SSSD through /etc/sssd/sssd.confStephen Gallagher2009-04-131-0/+51
The SSSD now links with the ini_config and collection libraries in the common directory. The monitor will track changes to the /etc/sssd/sssd.conf file using inotify on platforms that support it, or polled every 5 seconds on platforms that do not. At startup or modification of the conf file, the monitor will purge the existing confdb and reread it completely from the conf file, to ensure that there are no lingering entries. It does this in a transaction, so there should be no race condition with the client services. A new option has been added to the startup options for the SSSD. It is now possible to specify an alternate config file with the -c <file> at the command line.