diff options
author | Stephen Gallagher <sgallagh@redhat.com> | 2010-02-18 07:49:04 -0500 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2010-02-18 13:48:45 -0500 |
commit | 1c48b5a62f73234ed26bb20f0ab345ab61cda0ab (patch) | |
tree | 0b6cddd567a862e1a7b5df23764869782a62ca78 /server/examples | |
parent | 8c56df3176f528fe0260974b3bf934173c4651ea (diff) | |
download | sssd-1c48b5a62f73234ed26bb20f0ab345ab61cda0ab.tar.gz sssd-1c48b5a62f73234ed26bb20f0ab345ab61cda0ab.tar.bz2 sssd-1c48b5a62f73234ed26bb20f0ab345ab61cda0ab.zip |
Rename server/ directory to src/
Also update BUILD.txt
Diffstat (limited to 'server/examples')
-rw-r--r-- | server/examples/sssd.conf | 81 | ||||
-rw-r--r-- | server/examples/sssdproxytest | 5 | ||||
-rw-r--r-- | server/examples/sudo | 6 |
3 files changed, 0 insertions, 92 deletions
diff --git a/server/examples/sssd.conf b/server/examples/sssd.conf deleted file mode 100644 index 82c6d6b0..00000000 --- a/server/examples/sssd.conf +++ /dev/null @@ -1,81 +0,0 @@ -[sssd] -config_file_version = 2 -# Number of times services should attempt to reconnect in the -# event of a crash or restart before they give up -reconnection_retries = 3 -# if a backend is particularly slow you can raise this timeout here -sbus_timeout = 30 -services = nss, pam -; domains = LOCAL,LDAP -# SSSD will not start if you don't configure any domain. -# Add new domains condifgurations as [domain/<NAME>] sections. -# Then add the list of domains (in the order you want them to be -# queried in the 'domains" attribute above and uncomment it - - -[nss] -# the following prevents sssd for searching for the root user/group in -# all domains (you can add here a comma separated list of system accounts are -# always going to be /etc/passwd users, or that you want to filter out) -filter_groups = root -filter_users = root -reconnection_retries = 3 - -# The EntryCacheTimeout indicates the number of seconds to retain before -# an entry in cache is considered stale and must block to refresh. -# The EntryCacheNoWaitRefreshTimeout indicates the number of seconds to -# wait before updating the cache out-of-band. (NSS requests will still -# be returned from cache until the full EntryCacheTimeout). Setting this -# value to 0 turns this feature off (default) -; entry_cache_timeout = 600 -; entry_cache_nowait_timeout = 300 - -[pam] -reconnection_retries = 3 - -# Example LOCAL domain that stores all users natively in the SSSD internal -# directory. These local users and groups are not visibile in /etc/passwd, it -# now contains only root and system accounts. -; [domain/LOCAL] -; description = LOCAL Users domain -; id_provider = local -; enumerate = true -; min_id = 500 -; max_id = 999 - -# Example native LDAP domain -; [domain/LDAP] -; id_provider = ldap -; auth_provider = ldap -; ldap_uri = ldap://ldap.mydomain.org -; ldap_user_search_base = dc=mydomain,dc=org -; ldap_tls_reqcert = demand -; cache_credentials = true -; enumerate = true - -# Example LDAP domain where the LDAP server is an Active Directory server. - -; [domain/AD] -; description = LDAP domain with AD server -; enumerate = false -; min_id = 1000 -; -; id_provider = ldap -; auth_provider = ldap -; ldap_uri = ldap://your.ad.server.com -; ldap_schema = rfc2307bis -; ldap_user_search_base = cn=users,dc=example,dc=com -; ldap_group_search_base = cn=users,dc=example,dc=com -; ldap_default_bind_dn = cn=Administrator,cn=Users,dc=example,dc=com -; ldap_default_authtok_type = password -; ldap_default_authtok = YOUR_PASSWORD -; ldap_user_object_class = person -; ldap_user_name = msSFU30Name -; ldap_user_uid_number = msSFU30UidNumber -; ldap_user_gid_number = msSFU30GidNumber -; ldap_user_home_directory = msSFU30HomeDirectory -; ldap_user_shell = msSFU30LoginShell -; ldap_user_principal = userPrincipalName -; ldap_group_object_class = group -; ldap_group_name = msSFU30Name -; ldap_group_gid_number = msSFU30GidNumber diff --git a/server/examples/sssdproxytest b/server/examples/sssdproxytest deleted file mode 100644 index 14217969..00000000 --- a/server/examples/sssdproxytest +++ /dev/null @@ -1,5 +0,0 @@ -#%PAM-1.0 -auth irequired pam_ldap.so - -account required pam_ldap.so - diff --git a/server/examples/sudo b/server/examples/sudo deleted file mode 100644 index 4af91ba6..00000000 --- a/server/examples/sudo +++ /dev/null @@ -1,6 +0,0 @@ -#%PAM-1.0 -auth required pam_sss.so -account required pam_sss.so -password required pam_sss.so -session optional pam_keyinit.so revoke -session required pam_limits.so |