Upload etc/default/useradd with huggingface_hub
Browse files- etc/default/useradd +37 -0
etc/default/useradd
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Default values for useradd(8)
|
| 2 |
+
#
|
| 3 |
+
# The SHELL variable specifies the default login shell on your
|
| 4 |
+
# system.
|
| 5 |
+
# Similar to DSHELL in adduser. However, we use "sh" here because
|
| 6 |
+
# useradd is a low level utility and should be as general
|
| 7 |
+
# as possible
|
| 8 |
+
SHELL=/bin/sh
|
| 9 |
+
#
|
| 10 |
+
# The default group for users
|
| 11 |
+
# 100=users on Debian systems
|
| 12 |
+
# Same as USERS_GID in adduser
|
| 13 |
+
# This argument is used when the -n flag is specified.
|
| 14 |
+
# The default behavior (when -n and -g are not specified) is to create a
|
| 15 |
+
# primary user group with the same name as the user being added to the
|
| 16 |
+
# system.
|
| 17 |
+
# GROUP=100
|
| 18 |
+
#
|
| 19 |
+
# The default home directory. Same as DHOME for adduser
|
| 20 |
+
# HOME=/home
|
| 21 |
+
#
|
| 22 |
+
# The number of days after a password expires until the account
|
| 23 |
+
# is permanently disabled
|
| 24 |
+
# INACTIVE=-1
|
| 25 |
+
#
|
| 26 |
+
# The default expire date
|
| 27 |
+
# EXPIRE=
|
| 28 |
+
#
|
| 29 |
+
# The SKEL variable specifies the directory containing "skeletal" user
|
| 30 |
+
# files; in other words, files such as a sample .profile that will be
|
| 31 |
+
# copied to the new user's home directory when it is created.
|
| 32 |
+
# SKEL=/etc/skel
|
| 33 |
+
#
|
| 34 |
+
# Defines whether the mail spool should be created while
|
| 35 |
+
# creating the account
|
| 36 |
+
# CREATE_MAIL_SPOOL=yes
|
| 37 |
+
|