diff options
author | Jakub Hrozek <jhrozek@redhat.com> | 2009-08-13 13:02:28 +0200 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2009-08-13 09:16:20 -0400 |
commit | 2e53c10c68a86c33d97936fce02c3c53aad82bfa (patch) | |
tree | 88eb9699c29422737a9ce663319480a17a5db13b /server/man | |
parent | 7fb74edcde011adef137357c916494409a94f1a1 (diff) | |
download | sssd-2e53c10c68a86c33d97936fce02c3c53aad82bfa.tar.gz sssd-2e53c10c68a86c33d97936fce02c3c53aad82bfa.tar.bz2 sssd-2e53c10c68a86c33d97936fce02c3c53aad82bfa.zip |
Make "files" a reserved word for legacy local domain
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
Diffstat (limited to 'server/man')
-rw-r--r-- | server/man/sssd.conf.5.xml | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/server/man/sssd.conf.5.xml b/server/man/sssd.conf.5.xml index 833bd718..6c5ce87a 100644 --- a/server/man/sssd.conf.5.xml +++ b/server/man/sssd.conf.5.xml @@ -493,6 +493,9 @@ Supported backends: </para> <para> + files: traditional UNIX files (<filename>/etc/passwd</filename>) + </para> + <para> proxy: Support a legacy NSS provider </para> <para> @@ -598,7 +601,7 @@ description = Service Monitor Configuration [domains] description = Domains served by SSSD -domains = LOCAL +domains = LOCAL,FILES [domains/LOCAL] description = LOCAL Users domain @@ -608,6 +611,13 @@ maxId = 30000 legacy = FALSE magicPrivateGroups = TRUE provider = local + +[domains/FILES] +description = Users stored in UNIX files +enumerate = 3 +minId = 500 +maxId = 4999 +provider = files </programlisting> </para> </refsect1> |