home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 November (DVD) / PCWELT_11_2006.ISO / casper / filesystem.squashfs / usr / share / doc / adduser / examples / adduser.local.conf.examples / adduser.conf next >
Encoding:
Text File  |  2006-07-10  |  2.3 KB  |  69 lines

  1. # /etc/adduser.conf: `adduser' configuration.
  2. # See adduser(8) and adduser.conf(5) for full documentation.
  3.  
  4. # [JNZ] Modified 23-Sep-2004
  5.  
  6. # Modified from the version shipped with adduser(8) by John Zaitseff.
  7. # These modifications are released into the public domain.
  8.  
  9. # The DSHELL variable specifies the default login shell on your
  10. # system.
  11. DSHELL=/bin/bash
  12.  
  13. # The DHOME variable specifies the directory containing users' home
  14. # directories.
  15. DHOME=/home
  16.  
  17. # If GROUPHOMES is "yes", then the home directories will be created as
  18. # /home/groupname/user.
  19. GROUPHOMES=no
  20.  
  21. # If LETTERHOMES is "yes", then the created home directories will have
  22. # an extra directory - the first letter of the user name. For example:
  23. # /home/u/user.
  24. LETTERHOMES=no
  25.  
  26. # The SKEL variable specifies the directory containing "skeletal" user
  27. # files; in other words, files such as a sample .profile that will be
  28. # copied to the new user's home directory when it is created.
  29. SKEL=/etc/skel
  30.  
  31. # FIRST_SYSTEM_[GU]ID to LAST_SYSTEM_[GU]ID inclusive is the range for UIDs
  32. # for dynamically allocated administrative and system accounts/groups.
  33. FIRST_SYSTEM_UID=100
  34. LAST_SYSTEM_UID=999
  35. FIRST_SYSTEM_GID=100
  36. LAST_SYSTEM_GID=999
  37.  
  38. # FIRST_[GU]ID to LAST_[GU]ID inclusive is the range of UIDs of dynamically
  39. # allocated user accounts/groups.
  40. FIRST_UID=1000
  41. LAST_UID=29999
  42. FIRST_GID=1000
  43. LAST_GID=29999
  44.  
  45. # The USERGROUPS variable can be either "yes" or "no".  If "yes" each
  46. # created user will be given their own group to use as a default, and
  47. # their home directories will be g+s.  If "no", each created user will
  48. # be placed in the group whose gid is USERS_GID (see below).
  49. USERGROUPS=no
  50.  
  51. # If USERGROUPS is "no", then USERS_GID should be the GID of the group
  52. # `users' (or the equivalent group) on your system.
  53. USERS_GID=100
  54.  
  55. # If QUOTAUSER is set, a default quota will be set from that user with
  56. # `edquota -p QUOTAUSER newuser'
  57. QUOTAUSER=""
  58.  
  59. # If DIR_MODE is set, directories will be created with the specified
  60. # mode. Otherwise the default mode 0755 will be used.
  61. DIR_MODE=0755
  62.  
  63. # If SETGID_HOME is "yes" home directories for users with their own
  64. # group the setgid bit will be set. This was the default for
  65. # versions << 3.13 of adduser. Because it has some bad side effects we
  66. # no longer do this per default. If you want it nevertheless you can
  67. # still set it here.
  68. SETGID_HOME=no
  69.