]> git.saurik.com Git - apt.git/commitdiff
display a warning for unsigned repos
authorDavid Kalnischkies <david@kalnischkies.de>
Mon, 13 Oct 2014 05:26:27 +0000 (07:26 +0200)
committerDavid Kalnischkies <david@kalnischkies.de>
Mon, 13 Oct 2014 05:26:27 +0000 (07:26 +0200)
The same message is used for InRelease if fails in gpgv, but the
Release/Release.gpg duo needs to handle the failing download case as
well (InRelease just defers to the duo if download fails) and print a
message accompaning the insecure error to provide a hint on what is
going on.

apt-pkg/acquire-item.cc

index 3e4016ac628921e9ece07ef96cc72cb863ee8606..6731e07d5a41e77096861a8bdf2d00c27f230170 100644 (file)
@@ -1738,6 +1738,10 @@ void pkgAcqMetaSig::Failed(string Message,pkgAcquire::MethodConfig *Cnf)/*{{{*/
    // check if we need to fail at this point 
    if (AuthPass == true && CheckStopAuthentication(RealURI, Message))
          return;
+   else if (AuthPass == false)
+      _error->Warning(_("The data from '%s' is not signed. Packages "
+                        "from that repository can not be authenticated."),
+                      URIDesc.c_str());
 
    // FIXME: meh, this is not really elegant
    string InReleaseURI = RealURI.replace(RealURI.rfind("Release.gpg"), 12,