]> git.somenet.org - root/pub/somesible.git/blob - roles/base/apt/files/default/apt.conf.d/01autoremove
[roles/base/apt] configure package manager + update pkg-cache + upgrade packages
[root/pub/somesible.git] / roles / base / apt / files / default / apt.conf.d / 01autoremove
1 #
2 ################################################
3 ### Managed by someone's ansible provisioner ###
4 ################################################
5 # Part of: https://git.somenet.org/root/pub/somesible.git
6 # 2017-2024 by someone <someone@somenet.org>
7 #
8
9 APT
10 {
11   NeverAutoRemove
12   {
13     "^firmware-linux.*";
14     "^linux-firmware$";
15     "^linux-image-[a-z0-9]*$";
16     "^linux-image-[a-z0-9]*-[a-z0-9]*$";
17   };
18
19   VersionedKernelPackages
20   {
21     # kernels
22     "linux-.*";
23     "kfreebsd-.*";
24     "gnumach-.*";
25     # (out-of-tree) modules
26     ".*-modules";
27     ".*-kernel";
28   };
29
30   Never-MarkAuto-Sections
31   {
32 #    "metapackages";
33 #    "tasks";
34   };
35
36   Move-Autobit-Sections
37   {
38 #    "oldlibs";
39   };
40 };