summaryrefslogtreecommitdiff
path: root/vendor
diff options
context:
space:
mode:
authorJulian Andres Klode <jak@debian.org>2025-05-06 18:40:09 +0200
committerJulian Andres Klode <jak@debian.org>2025-05-19 17:06:31 +0000
commitfb57847947daa41291e87ce2a9e66e8dcca104b3 (patch)
tree17fe13a84cf53ce595425a6ce5c48412989b33e5 /vendor
parentaea3d9cf573a17400d4c1d399f410cb87ec58c6d (diff)
Ubuntu: Enable 3.0 solver by default in apt CLI tools
Update our vendor config to enable the 3.0 solver by default, using the legacy compat mode for apt-get, where it is allowed to remove manually installed packages.
Diffstat (limited to 'vendor')
-rw-r--r--vendor/ubuntu/apt.conf-01-vendor-ubuntu7
1 files changed, 7 insertions, 0 deletions
diff --git a/vendor/ubuntu/apt.conf-01-vendor-ubuntu b/vendor/ubuntu/apt.conf-01-vendor-ubuntu
index 30d25a717..64797799a 100644
--- a/vendor/ubuntu/apt.conf-01-vendor-ubuntu
+++ b/vendor/ubuntu/apt.conf-01-vendor-ubuntu
@@ -1,2 +1,9 @@
Acquire::Changelogs::AlwaysOnline "true";
Acquire::http::User-Agent-Non-Interactive "true";
+
+// Enable the new solver by default for our commands
+binary::apt::APT::Solver "3.0";
+binary::apt-get::APT::Solver "3.0";
+// Allow apt-get to remove manually installed packages for the
+// first phase.
+binary::apt-get::APT::Solver::RemoveManual "true";