summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Andres Klode <julian.klode@canonical.com>2024-04-23 20:32:17 +0200
committerJulian Andres Klode <julian.klode@canonical.com>2024-04-23 20:32:30 +0200
commitd4889a909632f38418c630f257c00ccc595ba572 (patch)
tree43308ed2307ffcec85ddc9045b8380dfc9b4ace1
parent2170f7b62a29b8ae602490ebf80e92fae09d5a9d (diff)
Highlight essential removals with action::remove color
-rw-r--r--apt-private/private-output.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-private/private-output.cc b/apt-private/private-output.cc
index 09d03d340..eedf056f0 100644
--- a/apt-private/private-output.cc
+++ b/apt-private/private-output.cc
@@ -740,7 +740,7 @@ bool ShowEssential(ostream &out,CacheFile &Cache)
}
return ShowList(out,_("WARNING: The following essential packages will be removed.\n"
"This should NOT be done unless you know exactly what you are doing!"),
- pkglist, &AlwaysTrue, withdue, &EmptyString);
+ pkglist, &AlwaysTrue, withdue, &EmptyString, "action::remove");
}
/*}}}*/
// Stats - Show some statistics /*{{{*/