summaryrefslogtreecommitdiff
path: root/apt-pkg
diff options
context:
space:
mode:
authorMichael Vogt <mvo@debian.org>2014-09-26 20:59:56 +0200
committerMichael Vogt <mvo@debian.org>2014-09-26 21:00:22 +0200
commitc4ffa0428b617cd844f0f9dfd5d16ae0553675ac (patch)
treeed6053c03b9f2ab0ff8b8f854262e06dce7736e8 /apt-pkg
parente7d37fac6328bba86fa183edc284ac629f7c03e4 (diff)
Print warning for unauthenticated repositories
Diffstat (limited to 'apt-pkg')
-rw-r--r--apt-pkg/acquire-item.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/apt-pkg/acquire-item.cc b/apt-pkg/acquire-item.cc
index 9d9aec4d0..4e843ecaf 100644
--- a/apt-pkg/acquire-item.cc
+++ b/apt-pkg/acquire-item.cc
@@ -1970,6 +1970,10 @@ void pkgAcqMetaIndex::Failed(string Message,
DestFile = FinalFile;
}
+ // warn if the repository is unsinged
+ _error->Warning(_("The data from '%s' is not signed. Packages "
+ "from that repository can not be authenticated."),
+ URIDesc.c_str());
// No Release file was present, or verification failed, so fall
// back to queueing Packages files without verification
QueueIndexes(false);