ACCC1380 commited on
Commit
3695783
1 Parent(s): 1351c83

Upload etc/adduser.conf with huggingface_hub

Browse files
Files changed (1) hide show
  1. etc/adduser.conf +88 -0
etc/adduser.conf ADDED
@@ -0,0 +1,88 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # /etc/adduser.conf: `adduser' configuration.
2
+ # See adduser(8) and adduser.conf(5) for full documentation.
3
+
4
+ # The DSHELL variable specifies the default login shell on your
5
+ # system.
6
+ DSHELL=/bin/bash
7
+
8
+ # The DHOME variable specifies the directory containing users' home
9
+ # directories.
10
+ DHOME=/home
11
+
12
+ # If GROUPHOMES is "yes", then the home directories will be created as
13
+ # /home/groupname/user.
14
+ GROUPHOMES=no
15
+
16
+ # If LETTERHOMES is "yes", then the created home directories will have
17
+ # an extra directory - the first letter of the user name. For example:
18
+ # /home/u/user.
19
+ LETTERHOMES=no
20
+
21
+ # The SKEL variable specifies the directory containing "skeletal" user
22
+ # files; in other words, files such as a sample .profile that will be
23
+ # copied to the new user's home directory when it is created.
24
+ SKEL=/etc/skel
25
+
26
+ # FIRST_SYSTEM_[GU]ID to LAST_SYSTEM_[GU]ID inclusive is the range for UIDs
27
+ # for dynamically allocated administrative and system accounts/groups.
28
+ # Please note that system software, such as the users allocated by the base-passwd
29
+ # package, may assume that UIDs less than 100 are unallocated.
30
+ FIRST_SYSTEM_UID=100
31
+ LAST_SYSTEM_UID=999
32
+
33
+ FIRST_SYSTEM_GID=100
34
+ LAST_SYSTEM_GID=999
35
+
36
+ # FIRST_[GU]ID to LAST_[GU]ID inclusive is the range of UIDs of dynamically
37
+ # allocated user accounts/groups.
38
+ FIRST_UID=1000
39
+ LAST_UID=59999
40
+
41
+ FIRST_GID=1000
42
+ LAST_GID=59999
43
+
44
+ # The USERGROUPS variable can be either "yes" or "no". If "yes" each
45
+ # created user will be given their own group to use as a default. If
46
+ # "no", each created user will be placed in the group whose gid is
47
+ # USERS_GID (see below).
48
+ USERGROUPS=yes
49
+
50
+ # If USERGROUPS is "no", then USERS_GID should be the GID of the group
51
+ # `users' (or the equivalent group) on your system.
52
+ USERS_GID=100
53
+
54
+ # If DIR_MODE is set, directories will be created with the specified
55
+ # mode. Otherwise the default mode 0755 will be used.
56
+ DIR_MODE=0755
57
+
58
+ # If SETGID_HOME is "yes" home directories for users with their own
59
+ # group the setgid bit will be set. This was the default for
60
+ # versions << 3.13 of adduser. Because it has some bad side effects we
61
+ # no longer do this per default. If you want it nevertheless you can
62
+ # still set it here.
63
+ SETGID_HOME=no
64
+
65
+ # If QUOTAUSER is set, a default quota will be set from that user with
66
+ # `edquota -p QUOTAUSER newuser'
67
+ QUOTAUSER=""
68
+
69
+ # If SKEL_IGNORE_REGEX is set, adduser will ignore files matching this
70
+ # regular expression when creating a new home directory
71
+ SKEL_IGNORE_REGEX="dpkg-(old|new|dist|save)"
72
+
73
+ # Set this if you want the --add_extra_groups option to adduser to add
74
+ # new users to other groups.
75
+ # This is the list of groups that new non-system users will be added to
76
+ # Default:
77
+ #EXTRA_GROUPS="dialout cdrom floppy audio video plugdev users"
78
+
79
+ # If ADD_EXTRA_GROUPS is set to something non-zero, the EXTRA_GROUPS
80
+ # option above will be default behavior for adding new, non-system users
81
+ #ADD_EXTRA_GROUPS=1
82
+
83
+
84
+ # check user and group names also against this regular expression.
85
+ #NAME_REGEX="^[a-z][-a-z0-9_]*\$"
86
+
87
+ # use extrausers by default
88
+ #USE_EXTRAUSERS=1