Advertisement
Guest User

Untitled

a guest
Jan 13th, 2021
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. root@bugocsiga:~# cat /etc/apt/apt.conf.d/01autoremove
  2. APT
  3. {
  4. NeverAutoRemove
  5. {
  6. "^firmware-linux.*";
  7. "^linux-firmware$";
  8. "^linux-image-[a-z0-9]*$";
  9. "^linux-image-[a-z0-9]*-[a-z0-9]*$";
  10. };
  11.  
  12. VersionedKernelPackages
  13. {
  14. # linux kernels
  15. "linux-image";
  16. "linux-headers";
  17. "linux-image-extra";
  18. "linux-modules";
  19. "linux-modules-extra";
  20. "linux-signed-image";
  21. "linux-image-unsigned";
  22. # kfreebsd kernels
  23. "kfreebsd-image";
  24. "kfreebsd-headers";
  25. # hurd kernels
  26. "gnumach-image";
  27. # (out-of-tree) modules
  28. ".*-modules";
  29. ".*-kernel";
  30. "linux-backports-modules-.*";
  31. "linux-modules-.*";
  32. # tools
  33. "linux-tools";
  34. "linux-cloud-tools";
  35. # build info
  36. "linux-buildinfo";
  37. # source code
  38. "linux-source";
  39. };
  40.  
  41. Never-MarkAuto-Sections
  42. {
  43. "metapackages";
  44. "contrib/metapackages";
  45. "non-free/metapackages";
  46. "restricted/metapackages";
  47. "universe/metapackages";
  48. "multiverse/metapackages";
  49. };
  50.  
  51. Move-Autobit-Sections
  52. {
  53. "oldlibs";
  54. "contrib/oldlibs";
  55. "non-free/oldlibs";
  56. "restricted/oldlibs";
  57. "universe/oldlibs";
  58. "multiverse/oldlibs";
  59. };
  60. };
  61.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement