Advertisement
Guest User

Untitled

a guest
Sep 15th, 2016
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.08 KB | None | 0 0
  1. [import]
  2. # Data from these files is used when libuser.conf does not define a value.
  3. # The mapping is documented in the man page.
  4. login_defs = /etc/login.defs
  5. default_useradd = /etc/default/useradd
  6.  
  7. [defaults]
  8. # The default (/usr/lib*/libuser) is usually correct
  9. # moduledir = /your/custom/directory
  10.  
  11. # The following variables are usually imported:
  12. # skeleton = /etc/skel
  13. # mailspooldir = /var/mail
  14.  
  15. crypt_style = md5
  16. modules = files shadow
  17. create_modules = files shadow
  18. # modules = files shadow ldap
  19. # create_modules = ldap
  20.  
  21. [userdefaults]
  22. LU_USERNAME = %n
  23. # LU_UIDNUMBER = 500
  24. LU_GIDNUMBER = %u
  25. # LU_USERPASSWORD = !!
  26. # LU_GECOS = %n
  27. # LU_HOMEDIRECTORY = /home/%n
  28. # LU_LOGINSHELL = /bin/bash
  29.  
  30. # LU_SHADOWNAME = %n
  31. # LU_SHADOWPASSWORD = !!
  32. # LU_SHADOWLASTCHANGE = %d
  33. # LU_SHADOWMIN = 0
  34. # LU_SHADOWMAX = 99999
  35. # LU_SHADOWWARNING = 7
  36. # LU_SHADOWINACTIVE = -1
  37. # LU_SHADOWEXPIRE = -1
  38. # LU_SHADOWFLAG = -1
  39.  
  40. [groupdefaults]
  41. LU_GROUPNAME = %n
  42. # LU_GIDNUMBER = 500
  43. # LU_GROUPPASSWORD = !!
  44. # LU_MEMBERUID =
  45. # LU_ADMINISTRATORUID =
  46.  
  47. [files]
  48. # This is useful for the case where some master files are used to
  49. # populate a different NSS mechanism which this workstation uses.
  50. # directory = /etc
  51.  
  52. [shadow]
  53. # This is useful for the case where some master files are used to
  54. # populate a different NSS mechanism which this workstation uses.
  55. # directory = /etc
  56.  
  57. [ldap]
  58. # Setting these is always necessary.
  59. # server = ldap
  60. # basedn = dc=example,dc=com
  61.  
  62. # Setting these is rarely necessary, since it's usually correct.
  63. # userBranch = ou=People
  64. # groupBranch = ou=Group
  65.  
  66. # Set only if your administrative user uses simple bind operations to
  67. # connect to the server.
  68. # binddn = cn=Manager,dc=example,dc=com
  69.  
  70. # Set this only if the default user (as determined by SASL) is incorrect
  71. # for SASL bind operations. Usually, it's correct, so you'll rarely need
  72. # to set these.
  73. # user = Manager
  74. # authuser = Manager
  75.  
  76. [sasl]
  77. # Set these only if your sasldb is only used by a particular application, and
  78. # in a particular domain. The default (all applications, all domains) is
  79. # probably correct for most installations.
  80. # appname = imap
  81. # domain = EXAMPLE.COM
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement