diff options
author | Julian Andres Klode <jak@debian.org> | 2011-04-08 13:57:04 +0200 |
---|---|---|
committer | Julian Andres Klode <jak@debian.org> | 2011-04-08 13:57:04 +0200 |
commit | 7ea7ac9efa88b73fc6ff30483a928ef49b95c015 (patch) | |
tree | cb1c4b50250e6283ce15c675d921e7d4bc71f589 /apt-pkg | |
parent | 8220213e48857172d8ebbf3d4914667e372a8930 (diff) |
* apt-pkg/acquire-item.cc:
- Use Release files even if they cannot be verified (LP: #704595)
Diffstat (limited to 'apt-pkg')
-rw-r--r-- | apt-pkg/acquire-item.cc | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/apt-pkg/acquire-item.cc b/apt-pkg/acquire-item.cc index 39b9feff2..1d651ba69 100644 --- a/apt-pkg/acquire-item.cc +++ b/apt-pkg/acquire-item.cc @@ -1502,6 +1502,26 @@ void pkgAcqMetaIndex::Failed(string Message,pkgAcquire::MethodConfig *Cnf) ReportMirrorFailure("GPGFailure"); } + /* Always move the meta index, even if gpgv failed. This ensures + * that PackageFile objects are correctly filled in */ + { + string FinalFile = _config->FindDir("Dir::State::lists"); + FinalFile += URItoFileName(RealURI); + /* InRelease files become Release files, otherwise + * they would be considered as trusted later on */ + if (SigFile == DestFile) { + RealURI = RealURI.replace(RealURI.rfind("InRelease"), 9, + "Release"); + FinalFile = FinalFile.replace(FinalFile.rfind("InRelease"), 9, + "Release"); + SigFile = FinalFile; + } + Rename(DestFile,FinalFile); + chmod(FinalFile.c_str(),0644); + + DestFile = FinalFile; + } + // No Release file was present, or verification failed, so fall // back to queueing Packages files without verification QueueIndexes(false); |