summaryrefslogtreecommitdiff
path: root/server/examples/sssd.conf
AgeCommit message (Collapse)AuthorFilesLines
2009-10-27Remove [dp] section from example configStephen Gallagher1-3/+0
Also remove references to the DP service from the sssd.conf manpages.
2009-10-26Remove DP from example configurationStephen Gallagher1-1/+1
2009-09-25Convert the example config to v2 format, upgrade config on update onlyJakub Hrozek1-76/+56
2009-09-23Remove provider=filesJakub Hrozek1-17/+0
Remove this provider type, as well as any references in the docs and examples to the "LEGACYLOCAL" migration domain. Fixes: #165
2009-09-11Update documentation and examplesSimo Sorce1-3/+1
Remove the "legacy" option from examples and man pages. Legacy is is finally R.I.P Add docs for ldapSchema in sssd-ldap man page.
2009-09-11Small changes to the example config and manpageJakub Hrozek1-6/+4
Remove magicPrivateGroups since it's set automatically, use bool values for enumerate. Also add a notice about krb5 auth-module with a link to specialized manpage to sssd.conf(5) similar to what we have for ldap auth-module. Move both outside proxy domain description.
2009-09-09Add support for the EntryCacheNoWaitRefreshTimeoutStephen Gallagher1-0/+9
This timeout specifies the lifetime of a cache entry before it is updated out-of-band. When this timeout is hit, the request will still complete from cache, but the SSSD will also go and update the cached entry in the background to extend the life of the cache entry and reduce the wait time of a future request.
2009-08-21extended the documentation of LDAP backendSumit Bose1-0/+26
Added man pages sections about user and group attribute mapping. Added an example configuration to access an AD server.
2009-08-13Make "files" a reserved word for legacy local domainJakub Hrozek1-2/+1
This patch introduces provider=files as a valid provider. Upon loading the backend, its properties in confdb are overwritten to those that represent legacy local domain. Also document this in sssd.conf(5) and example config
2009-06-30Remove redundant libPath option from proxy providerStephen Gallagher1-2/+0
The libPath should be constructed from the libName. There is no benefit to specifying it separately.
2009-05-15Treat the local provider as a special caseStephen Gallagher1-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.
2009-04-14Make reconnection to the Data Provider a global settingStephen Gallagher1-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"
2009-04-14Replace the example sssd.conf file with the one used in FedoraStephen Gallagher1-32/+71
Also remove the [services/infopipe] section, since we're not shipping InfoPipe yet, and that would be confusing.
2009-04-13Fix a couple of segfaults and timeout checksSimo Sorce1-1/+0
2009-04-13Allow configuration of the SSSD through /etc/sssd/sssd.confStephen Gallagher1-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.