Package: apt Version: 0.9.9.1~ubuntu3 Severity: normal When one entry in sources.list is incorrect, apt-get update may incorrectly report that other sources (which are fine) are also broken. This is because apt-get first looks for InRelease before actually downloading Release.gpg; so a single failing source will skip the rest of the downloads, and then later when apt-get sweeps the cache looking for missing Release.gpg, it concludes the other sources are not working either. Here is an example transcript:
# with the broken http://localhost:80 repo in sources.list (saucy-amd64)root@sabre:/etc# cat apt/sources.list deb http://localhost:9999/ubuntu/ saucy main restricted universe multiverse deb-src http://localhost:9999/ubuntu/ saucy main restricted universe multiverse deb http://localhost:9999/ubuntu/ saucy-updates main restricted universe multiverse deb-src http://localhost:9999/ubuntu/ saucy-updates main restricted universe multiverse deb http://localhost:9999/ubuntu/ saucy-proposed main restricted universe multiverse deb-src http://localhost:9999/ubuntu/ saucy-proposed main restricted universe multiverse deb http://localhost:9999/secure/ saucy-security main restricted universe multiverse deb-src http://localhost:9999/secure saucy-security main restricted universe multiverse deb http://localhost/repo ./ (saucy-amd64)root@sabre:/etc# apt-get update Ign http://localhost:9999 saucy InRelease Ign http://localhost:9999 saucy-updates InRelease Ign http://localhost:9999 saucy-proposed InRelease Ign http://localhost:9999 saucy-security InRelease Err http://localhost ./ InRelease Err http://localhost:9999 saucy Release.gpg Unable to connect to localhost:9999: Err http://localhost:9999 saucy-updates Release.gpg Unable to connect to localhost:9999: Err http://localhost:9999 saucy-proposed Release.gpg Unable to connect to localhost:9999: Err http://localhost:9999 saucy-security Release.gpg Unable to connect to localhost:9999: Err http://localhost ./ Release.gpg Unable to connect to localhost:80: Reading package lists... Done W: Failed to fetch http://localhost/repo/./InRelease W: Failed to fetch http://localhost:9999/ubuntu/dists/saucy/Release.gpg Unable to connect to localhost:9999: W: Failed to fetch http://localhost:9999/ubuntu/dists/saucy-updates/Release.gpg Unable to connect to localhost:9999: W: Failed to fetch http://localhost:9999/ubuntu/dists/saucy-proposed/Release.gpg Unable to connect to localhost:9999: W: Failed to fetch http://localhost:9999/secure/dists/saucy-security/Release.gpg Unable to connect to localhost:9999: W: Failed to fetch http://localhost/repo/./Release.gpg Unable to connect to localhost:80: W: Some index files failed to download. They have been ignored, or old ones used instead. # Now with the broken entry removed (saucy-amd64)root@sabre:/etc# cat apt/sources.list deb http://localhost:9999/ubuntu/ saucy main restricted universe multiverse deb-src http://localhost:9999/ubuntu/ saucy main restricted universe multiverse deb http://localhost:9999/ubuntu/ saucy-updates main restricted universe multiverse deb-src http://localhost:9999/ubuntu/ saucy-updates main restricted universe multiverse deb http://localhost:9999/ubuntu/ saucy-proposed main restricted universe multiverse deb-src http://localhost:9999/ubuntu/ saucy-proposed main restricted universe multiverse deb http://localhost:9999/secure/ saucy-security main restricted universe multiverse deb-src http://localhost:9999/secure saucy-security main restricted universe multiverse (saucy-amd64)root@sabre:/etc# apt-get update Ign http://localhost:9999 saucy InRelease Ign http://localhost:9999 saucy-updates InRelease Ign http://localhost:9999 saucy-proposed InRelease Ign http://localhost:9999 saucy-security InRelease Get:1 http://localhost:9999 saucy Release.gpg [933 B] Get:2 http://localhost:9999 saucy-updates Release.gpg [933 B] Get:3 http://localhost:9999 saucy-proposed Release.gpg [933 B] Get:4 http://localhost:9999 saucy-security Release.gpg [933 B] Get:5 http://localhost:9999 saucy Release [49.6 kB] Get:6 http://localhost:9999 saucy-updates Release [49.6 kB] Get:7 http://localhost:9999 saucy-proposed Release [49.6 kB] Get:8 http://localhost:9999 saucy-security Release [49.6 kB] Get:9 http://localhost:9999 saucy/main Translation-en [711 kB] Get:10 http://localhost:9999 saucy/multiverse Translation-en [101 kB] Get:11 http://localhost:9999 saucy/restricted Translation-en [2686 B] Get:12 http://localhost:9999 saucy/universe Translation-en [3886 kB] [etc] P.S. the attached config is kind of misleading because this was done from a chroot. -- Package-specific info: -- apt-config dump -- APT ""; APT::Architecture "amd64"; APT::Build-Essential ""; APT::Build-Essential:: "build-essential"; APT::Install-Recommends "1"; APT::Install-Suggests "0"; APT::Authentication ""; APT::Authentication::TrustCDROM "true"; APT::NeverAutoRemove ""; APT::NeverAutoRemove:: "^firmware-linux.*"; APT::NeverAutoRemove:: "^linux-firmware$"; APT::NeverAutoRemove:: "^kfreebsd-image.*"; APT::NeverAutoRemove:: "^gnumach$"; APT::NeverAutoRemove:: "^gnumach-image.*"; APT::NeverAutoRemove:: "^linux-image-3.11.0-12-generic$"; APT::NeverAutoRemove:: "^linux-image-extra-3.11.0-12-generic$"; APT::NeverAutoRemove:: "^linux-signed-image-3.11.0-12-generic$"; APT::NeverAutoRemove:: "^linux-backports-modules-.*-3.11.0-12-generic$"; APT::NeverAutoRemove:: "^linux-headers-3.11.0-12-generic$"; APT::NeverAutoRemove:: "^linux-tools-3.11.0-12-generic$"; APT::NeverAutoRemove:: "^linux-image-3.11.0-13-generic$"; APT::NeverAutoRemove:: "^linux-image-extra-3.11.0-13-generic$"; APT::NeverAutoRemove:: "^linux-signed-image-3.11.0-13-generic$"; APT::NeverAutoRemove:: "^linux-backports-modules-.*-3.11.0-13-generic$"; APT::NeverAutoRemove:: "^linux-headers-3.11.0-13-generic$"; APT::NeverAutoRemove:: "^linux-tools-3.11.0-13-generic$"; APT::Never-MarkAuto-Sections ""; APT::Never-MarkAuto-Sections:: "metapackages"; APT::Never-MarkAuto-Sections:: "restricted/metapackages"; APT::Never-MarkAuto-Sections:: "universe/metapackages"; APT::Never-MarkAuto-Sections:: "multiverse/metapackages"; APT::Never-MarkAuto-Sections:: "oldlibs"; APT::Never-MarkAuto-Sections:: "restricted/oldlibs"; APT::Never-MarkAuto-Sections:: "universe/oldlibs"; APT::Never-MarkAuto-Sections:: "multiverse/oldlibs"; APT::Periodic ""; APT::Periodic::Update-Package-Lists "1"; APT::Periodic::Download-Upgradeable-Packages "0"; APT::Periodic::AutocleanInterval "0"; APT::Update ""; APT::Update::Post-Invoke-Success ""; APT::Update::Post-Invoke-Success:: "touch /var/lib/apt/periodic/update-success-stamp 2>/dev/null || true"; APT::Update::Post-Invoke-Success:: "test -x /usr/bin/apt-show-versions || exit 0 ; apt-show-versions -i"; APT::Update::Post-Invoke-Success:: "[ ! -f /var/run/dbus/system_bus_socket ] || /usr/bin/dbus-send --system --dest=org.debian.apt --type=signal /org/debian/apt org.debian.apt.CacheChanged || true"; APT::Archives ""; APT::Archives::MaxAge "30"; APT::Archives::MinAge "2"; APT::Archives::MaxSize "500"; APT::Changelogs ""; APT::Changelogs::Server "http://changelogs.ubuntu.com/changelogs"; APT::Architectures ""; APT::Architectures:: "amd64"; APT::Architectures:: "i386"; APT::Compressor ""; APT::Compressor::. ""; APT::Compressor::.::Name "."; APT::Compressor::.::Extension ""; APT::Compressor::.::Binary ""; APT::Compressor::.::Cost "1"; APT::Compressor::gzip ""; APT::Compressor::gzip::Name "gzip"; APT::Compressor::gzip::Extension ".gz"; APT::Compressor::gzip::Binary "gzip"; APT::Compressor::gzip::Cost "2"; APT::Compressor::gzip::CompressArg ""; APT::Compressor::gzip::CompressArg:: "-9n"; APT::Compressor::gzip::UncompressArg ""; APT::Compressor::gzip::UncompressArg:: "-d"; APT::Compressor::bzip2 ""; APT::Compressor::bzip2::Name "bzip2"; APT::Compressor::bzip2::Extension ".bz2"; APT::Compressor::bzip2::Binary "bzip2"; APT::Compressor::bzip2::Cost "3"; APT::Compressor::bzip2::CompressArg ""; APT::Compressor::bzip2::CompressArg:: "-9"; APT::Compressor::bzip2::UncompressArg ""; APT::Compressor::bzip2::UncompressArg:: "-d"; APT::Compressor::xz ""; APT::Compressor::xz::Name "xz"; APT::Compressor::xz::Extension ".xz"; APT::Compressor::xz::Binary "xz"; APT::Compressor::xz::Cost "4"; APT::Compressor::xz::CompressArg ""; APT::Compressor::xz::CompressArg:: "-6"; APT::Compressor::xz::UncompressArg ""; APT::Compressor::xz::UncompressArg:: "-d"; APT::Compressor::lzma ""; APT::Compressor::lzma::Name "lzma"; APT::Compressor::lzma::Extension ".lzma"; APT::Compressor::lzma::Binary "xz"; APT::Compressor::lzma::Cost "5"; APT::Compressor::lzma::CompressArg ""; APT::Compressor::lzma::CompressArg:: "--format=lzma"; APT::Compressor::lzma::CompressArg:: "-9"; APT::Compressor::lzma::UncompressArg ""; APT::Compressor::lzma::UncompressArg:: "--format=lzma"; APT::Compressor::lzma::UncompressArg:: "-d"; APT::Compressor::::Name ""; APT::Compressor::::Extension "."; APT::Compressor::::Binary ""; APT::Compressor::::Cost "100"; APT::Compressor::::CompressArg ""; APT::Compressor::::CompressArg:: "-9"; APT::Compressor::::UncompressArg ""; APT::Compressor::::UncompressArg:: "-d"; Dir "/"; Dir::State "var/lib/apt/"; Dir::State::lists "lists/"; Dir::State::cdroms "cdroms.list"; Dir::State::mirrors "mirrors/"; Dir::State::extended_states "extended_states"; Dir::State::status "/var/lib/dpkg/status"; Dir::Cache "var/cache/apt/"; Dir::Cache::archives "archives/"; Dir::Cache::srcpkgcache "srcpkgcache.bin"; Dir::Cache::pkgcache "pkgcache.bin"; Dir::Etc "etc/apt/"; Dir::Etc::sourcelist "sources.list"; Dir::Etc::sourceparts "sources.list.d"; Dir::Etc::vendorlist "vendors.list"; Dir::Etc::vendorparts "vendors.list.d"; Dir::Etc::main "apt.conf"; Dir::Etc::netrc "auth.conf"; Dir::Etc::parts "apt.conf.d"; Dir::Etc::preferences "preferences"; Dir::Etc::preferencesparts "preferences.d"; Dir::Etc::trusted "trusted.gpg"; Dir::Etc::trustedparts "trusted.gpg.d"; Dir::Bin ""; Dir::Bin::methods "/usr/lib/apt/methods"; Dir::Bin::solvers ""; Dir::Bin::solvers:: "/usr/lib/apt/solvers"; Dir::Bin::dpkg "/usr/bin/dpkg"; Dir::Bin::bzip2 "/bin/bzip2"; Dir::Bin::xz "/usr/bin/xz"; Dir::Media ""; Dir::Media::MountPath "/media/apt"; Dir::Log "var/log/apt"; Dir::Log::Terminal "term.log"; Dir::Log::History "history.log"; Dir::Ignore-Files-Silently ""; Dir::Ignore-Files-Silently:: "~$"; Dir::Ignore-Files-Silently:: "\.disabled$"; Dir::Ignore-Files-Silently:: "\.bak$"; Dir::Ignore-Files-Silently:: "\.dpkg-[a-z]+$"; Dir::Ignore-Files-Silently:: "\.save$"; Dir::Ignore-Files-Silently:: "\.orig$"; Dir::Ignore-Files-Silently:: "\.distUpgrade$"; Acquire ""; Acquire::cdrom ""; Acquire::cdrom::mount "/media/cdrom/"; Acquire::Languages ""; Acquire::Languages:: "en"; Acquire::Languages:: "none"; Aptitude ""; Aptitude::Get-Root-Command "sudo:/usr/bin/sudo"; DPkg ""; DPkg::Pre-Invoke ""; DPkg::Pre-Invoke:: "if [ -x /usr/bin/etckeeper ]; then etckeeper pre-install; fi"; DPkg::Post-Invoke ""; DPkg::Post-Invoke:: "if [ -x /usr/bin/etckeeper ]; then etckeeper post-install; fi"; DPkg::Post-Invoke:: "if [ -d /var/lib/update-notifier ]; then touch /var/lib/update-notifier/dpkg-run-stamp; fi; if [ -e /var/lib/update-notifier/updates-available ]; then echo > /var/lib/update-notifier/updates-available; fi "; DPkg::Pre-Install-Pkgs ""; DPkg::Pre-Install-Pkgs:: "/usr/sbin/dpkg-preconfigure --apt || true"; RPM ""; RPM::Pre-Invoke ""; RPM::Pre-Invoke:: "if [ -x /usr/bin/etckeeper ]; then etckeeper pre-install; fi"; RPM::Post-Invoke ""; RPM::Post-Invoke:: "if [ -x /usr/bin/etckeeper ]; then etckeeper post-install; fi"; Unattended-Upgrade ""; Unattended-Upgrade::Allowed-Origins ""; Unattended-Upgrade::Allowed-Origins:: "${distro_id}:${distro_codename}-security"; CommandLine ""; CommandLine::AsString "apt-config dump"; -- (no /etc/apt/preferences present) -- -- /etc/apt/sources.list -- # deb cdrom:[Ubuntu 13.10 _Saucy Salamander_ - Release amd64 (20131016.1)]/ saucy main restricted # See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to # newer versions of the distribution. deb http://debian.stanford.edu/ubuntu/ saucy main restricted deb-src http://debian.stanford.edu/ubuntu/ saucy main restricted ## Major bug fix updates produced after the final release of the ## distribution. deb http://debian.stanford.edu/ubuntu/ saucy-updates main restricted deb-src http://debian.stanford.edu/ubuntu/ saucy-updates main restricted ## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu ## team. Also, please note that software in universe WILL NOT receive any ## review or updates from the Ubuntu security team. deb http://debian.stanford.edu/ubuntu/ saucy universe deb-src http://debian.stanford.edu/ubuntu/ saucy universe deb http://debian.stanford.edu/ubuntu/ saucy-updates universe deb-src http://debian.stanford.edu/ubuntu/ saucy-updates universe ## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu ## team, and may not be under a free licence. Please satisfy yourself as to ## your rights to use the software. Also, please note that software in ## multiverse WILL NOT receive any review or updates from the Ubuntu ## security team. deb http://debian.stanford.edu/ubuntu/ saucy multiverse deb-src http://debian.stanford.edu/ubuntu/ saucy multiverse deb http://debian.stanford.edu/ubuntu/ saucy-updates multiverse deb-src http://debian.stanford.edu/ubuntu/ saucy-updates multiverse ## N.B. software from this repository may not have been tested as ## extensively as that contained in the main release, although it includes ## newer versions of some applications which may provide useful features. ## Also, please note that software in backports WILL NOT receive any review ## or updates from the Ubuntu security team. deb http://debian.stanford.edu/ubuntu/ saucy-backports main restricted universe multiverse deb-src http://debian.stanford.edu/ubuntu/ saucy-backports main restricted universe multiverse deb http://debian.stanford.edu/ubuntu saucy-security main restricted deb-src http://debian.stanford.edu/ubuntu saucy-security main restricted deb http://debian.stanford.edu/ubuntu saucy-security universe deb-src http://debian.stanford.edu/ubuntu saucy-security universe deb http://debian.stanford.edu/ubuntu saucy-security multiverse deb-src http://debian.stanford.edu/ubuntu saucy-security multiverse ## Uncomment the following two lines to add software from Canonical's ## 'partner' repository. ## This software is not part of Ubuntu, but is offered by Canonical and the ## respective vendors as a service to Ubuntu users. # deb http://archive.canonical.com/ubuntu saucy partner # deb-src http://archive.canonical.com/ubuntu saucy partner ## This software is not part of Ubuntu, but is offered by third-party ## developers who want to ship their latest software. deb http://extras.ubuntu.com/ubuntu saucy main deb-src http://extras.ubuntu.com/ubuntu saucy main -- System Information: Debian Release: wheezy/sid APT prefers saucy-updates APT policy: (500, 'saucy-updates'), (500, 'saucy-security'), (500, 'saucy'), (100, 'saucy-backports') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 3.11.0-13-generic (SMP w/2 CPU cores) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages apt depends on: ii gnupg 1.4.14-1ubuntu2 ii libapt-pkg4.12 0.9.9.1~ubuntu3 ii libc6 2.17-93ubuntu4 ii libgcc1 1:4.8.1-10ubuntu8 ii libstdc++6 4.8.1-10ubuntu8 ii ubuntu-keyring 2012.05.19 apt recommends no packages. Versions of packages apt suggests: pn apt-doc <none> ii aptitude 0.6.8.2-1ubuntu2 ii dpkg-dev 1.16.12ubuntu1 ii python-apt 0.8.9.1ubuntu1 ii xz-utils 5.1.1alpha+20120614-2ubuntu1 -- no debconf information -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org