adduser.conf 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. # /etc/adduser.conf: `adduser' configuration.
  2. # See adduser(8) and adduser.conf(5) for full documentation.
  3. # A commented out setting indicates that this is the default in the
  4. # code. If you need to change those settings, remove the comment and
  5. # make your intended change.
  6. # The login shell to be used for all new users.
  7. # Default: DSHELL=/bin/bash
  8. #DSHELL=/bin/bash
  9. # The directory in which new home directories should be created.
  10. # Default: DHOME=/home
  11. # DHOME=/home
  12. # The directory from which skeletal user configuration files
  13. # will be copied.
  14. # Default: SKEL=/etc/skel
  15. #SKEL=/etc/skel
  16. # Specify inclusive ranges of UIDs and GIDs from which UIDs and GIDs
  17. # for system users, system groups, non-system users and non-system groups
  18. # can be dynamically allocated.
  19. # Default: FIRST_SYSTEM_UID=100, LAST_SYSTEM_UID=999
  20. #FIRST_SYSTEM_UID=100
  21. #LAST_SYSTEM_UID=999
  22. # Default: FIRST_SYSTEM_GID=100, LAST_SYSTEM_GID=999
  23. #FIRST_SYSTEM_GID=100
  24. #LAST_SYSTEM_GID=999
  25. # Default: FIRST_UID=1000, LAST_UID=59999
  26. #FIRST_UID=1000
  27. #LAST_UID=59999
  28. # Default: FIRST_GID=1000, LAST_GID=59999
  29. #FIRST_GID=1000
  30. #LAST_GID=59999
  31. # Specify a file or a directory containing UID and GID pool.
  32. #UID_POOL=/etc/adduser-pool.conf
  33. #UID_POOL=/etc/adduser-pool.d/
  34. #GID_POOL=/etc/adduser-pool.conf
  35. #GID_POOL=/etc/adduser-pool.d/
  36. # Specify whether each created non-system user will be
  37. # given their own group to use.
  38. # Default: USERGROUPS=yes
  39. #USERGROUPS=yes
  40. # Defines the groupname or GID of the group all newly-created
  41. # non-system users are placed into.
  42. # It is a configuration error to define both variables
  43. # even if the values are consistent.
  44. # Default: USERS_GID=undefined, USERS_GROUP=users
  45. #USERS_GID=100
  46. #USERS_GROUP=users
  47. # The permissions mode for home directories of non-system users.
  48. # Default: DIR_MODE=0700
  49. #DIR_MODE=0700
  50. # The permissions mode for home directories of system users.
  51. # Default: SYS_DIR_MODE=0755
  52. #SYS_DIR_MODE=0755
  53. # If set to a nonempty value, new users will have quotas copied
  54. # from that user with `edquota -p QUOTAUSER newuser'
  55. # Default: QUOTAUSER=""
  56. #QUOTAUSER=""
  57. # Non-system user- and groupnames are checked against this regular
  58. # expression.
  59. # Default: NAME_REGEX="^[a-z][-a-z0-9_]*\$?$"
  60. #NAME_REGEX="^[a-z][-a-z0-9_]*\$?$"
  61. # System user- and groupnames are checked against this regular
  62. # expression.
  63. # Default: SYS_NAME_REGEX="^[a-z_][-a-z0-9_]*\$?$"
  64. #SYS_NAME_REGEX="^[a-z_][-a-z0-9_]*\$?$"
  65. # When populating the newly created home directory of a non-system user,
  66. # files in SKEL matching this regex are not copied.
  67. # Default: SKEL_IGNORE_REGEX="\.(dpkg|ucf)-(old|new|dist|save)$"
  68. #SKEL_IGNORE_REGEX="\.(dpkg|ucf)-(old|new|dist|save)$"
  69. # list of groups that new non-system users will be added to
  70. # if ADD_EXTRA_GROUPS is non-zero or set on the command line.
  71. # Default: EXTRA_GROUPS="users"
  72. #EXTRA_GROUPS="users"
  73. # Setting this to something other than 0 will cause adduser to add
  74. # newly created non-system users to the list of groups defined by
  75. # EXTRA_GROUPS.
  76. # Default: ADD_EXTRA_GROUPS=0
  77. #ADD_EXTRA_GROUPS=0