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