Upload etc/deluser.conf with huggingface_hub
Browse files- etc/deluser.conf +20 -0
etc/deluser.conf
ADDED
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# /etc/deluser.conf: `deluser' configuration.
|
2 |
+
|
3 |
+
# Remove home directory and mail spool when user is removed
|
4 |
+
REMOVE_HOME = 0
|
5 |
+
|
6 |
+
# Remove all files on the system owned by the user to be removed
|
7 |
+
REMOVE_ALL_FILES = 0
|
8 |
+
|
9 |
+
# Backup files before removing them. This options has only an effect if
|
10 |
+
# REMOVE_HOME or REMOVE_ALL_FILES is set.
|
11 |
+
BACKUP = 0
|
12 |
+
|
13 |
+
# target directory for the backup file
|
14 |
+
BACKUP_TO = "."
|
15 |
+
|
16 |
+
# delete a group even there are still users in this group
|
17 |
+
ONLY_IF_EMPTY = 0
|
18 |
+
|
19 |
+
# exclude these filesystem types when searching for files of a user to backup
|
20 |
+
EXCLUDE_FSTYPES = "(proc|sysfs|usbfs|devpts|tmpfs|afs)"
|