Upload etc/apt/apt.conf.d/01autoremove with huggingface_hub
Browse files
etc/apt/apt.conf.d/01autoremove
ADDED
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
APT
|
2 |
+
{
|
3 |
+
NeverAutoRemove
|
4 |
+
{
|
5 |
+
"^firmware-linux.*";
|
6 |
+
"^linux-firmware$";
|
7 |
+
"^linux-image-[a-z0-9]*$";
|
8 |
+
"^linux-image-[a-z0-9]*-[a-z0-9]*$";
|
9 |
+
};
|
10 |
+
|
11 |
+
VersionedKernelPackages
|
12 |
+
{
|
13 |
+
# kernels
|
14 |
+
"linux-.*";
|
15 |
+
"kfreebsd-.*";
|
16 |
+
"gnumach-.*";
|
17 |
+
# (out-of-tree) modules
|
18 |
+
".*-modules";
|
19 |
+
".*-kernel";
|
20 |
+
};
|
21 |
+
|
22 |
+
Never-MarkAuto-Sections
|
23 |
+
{
|
24 |
+
"metapackages";
|
25 |
+
"contrib/metapackages";
|
26 |
+
"non-free/metapackages";
|
27 |
+
"restricted/metapackages";
|
28 |
+
"universe/metapackages";
|
29 |
+
"multiverse/metapackages";
|
30 |
+
};
|
31 |
+
|
32 |
+
Move-Autobit-Sections
|
33 |
+
{
|
34 |
+
"oldlibs";
|
35 |
+
"contrib/oldlibs";
|
36 |
+
"non-free/oldlibs";
|
37 |
+
"restricted/oldlibs";
|
38 |
+
"universe/oldlibs";
|
39 |
+
"multiverse/oldlibs";
|
40 |
+
};
|
41 |
+
};
|