source: npl/system/nss_ldap/nsswitch.conf @ 26ffad7

Last change on this file since 26ffad7 was c5c522c, checked in by Edwin Eefting <edwin@datux.nl>, 8 years ago

initial commit, transferred from cleaned syn3 svn tree

  • Property mode set to 100755
File size: 1.2 KB
Line 
1#ident $Id: nsswitch.conf 2134 2005-12-12 15:10:36Z edwin $
2#
3# An example file that could be copied over to /etc/nsswitch.conf; it
4# uses LDAP conjunction with files.
5#
6# "hosts:" and "services:" in this file are used only if the
7# /etc/netconfig file has a "-" for nametoaddr_libs of "inet" transports.
8
9# the following two lines obviate the "+" entry in /etc/passwd and /etc/group.
10passwd:         files ldap
11group:          files ldap
12
13# consult DNS first, we will need it to resolve the LDAP host. (If we
14# can't resolve it, we're in infinite recursion, because libldap calls
15# gethostbyname(). Careful!)
16hosts:          files dns
17
18# LDAP is nominally authoritative for the following maps.
19services:   files ldap
20networks:   ldap [NOTFOUND=return] files
21protocols:  files ldap
22rpc:        files ldap
23ethers:     files ldap
24
25# no support for netmasks, bootparams, publickey yet.
26netmasks:   files
27bootparams: files
28publickey:  files
29automount:  files
30
31# I'm pretty sure nsswitch.conf is consulted directly by sendmail,
32# here, so we can't do much here. Instead, use bbense's LDAP
33# rules ofr sendmail.
34aliases:    files
35sendmailvars:   files
36
37# Note: there is no support for netgroups on Solaris (yet)
38netgroup:   ldap [NOTFOUND=return] files
Note: See TracBrowser for help on using the repository browser.