summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Andres Klode <jak@debian.org>2024-04-13 21:11:03 +0200
committerJulian Andres Klode <jak@debian.org>2024-04-13 21:11:03 +0200
commit964ffc6664d7301c9947c4c83656846b4789f097 (patch)
tree87d25f5654e145de44b0b24aba44b84e04150394
parentcf9bebba1c92e937f639a229d46fea4e24cfa9df (diff)
install: Show downgrades as yellow
dnf shows downgrades as green because the package comes from a remote repository, but I think yellow is more indicative that they are unsupported. Ganneff asked for yellow for kept packages too, however I'm not adding yellow there, as kept packages are more indicative of an archive error, likely temporary, rather than an action item for the user.
-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 30db3d5e7..5b7a3bab3 100644
--- a/apt-private/private-output.cc
+++ b/apt-private/private-output.cc
@@ -642,7 +642,7 @@ bool ShowDowngraded(ostream &out,CacheFile &Cache)
},
&PrettyFullName,
CurrentToCandidateVersion(&Cache),
- "APT::Color::Green");
+ "APT::Color::Yellow");
}
/*}}}*/
// ShowHold - Show held but changed packages /*{{{*/