Activity log for bug #1693900

Date Who What changed Old value New value Message
2017-05-26 18:36:08 Jens Elkner bug added bug
2017-05-30 13:09:05 Julian Andres Klode apt (Ubuntu): importance Undecided Wishlist
2017-05-30 13:09:05 Julian Andres Klode apt (Ubuntu): status New Triaged
2017-05-30 13:09:41 Julian Andres Klode apt (Ubuntu): importance Wishlist Low
2017-05-30 13:09:51 Julian Andres Klode apt (Ubuntu): importance Low Wishlist
2020-05-31 03:13:05 Ryan Jaeb bug watch added https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=776152
2020-05-31 03:13:05 Ryan Jaeb bug watch added https://github.com/moby/moby/issues/23910
2020-05-31 03:13:05 Ryan Jaeb bug watch added https://github.com/moby/libnetwork/issues/1654
2021-02-18 15:06:04 Julian Andres Klode apt (Ubuntu): status Triaged Fix Released
2021-02-18 15:06:14 Julian Andres Klode nominated for series Ubuntu Bionic
2021-02-18 15:06:14 Julian Andres Klode bug task added apt (Ubuntu Bionic)
2021-02-18 15:06:14 Julian Andres Klode nominated for series Ubuntu Xenial
2021-02-18 15:06:14 Julian Andres Klode bug task added apt (Ubuntu Xenial)
2021-02-18 15:06:14 Julian Andres Klode nominated for series Ubuntu Groovy
2021-02-18 15:06:14 Julian Andres Klode bug task added apt (Ubuntu Groovy)
2021-02-18 15:06:14 Julian Andres Klode nominated for series Ubuntu Focal
2021-02-18 15:06:14 Julian Andres Klode bug task added apt (Ubuntu Focal)
2021-02-18 15:06:23 Julian Andres Klode apt (Ubuntu Bionic): status New Triaged
2021-02-18 15:06:24 Julian Andres Klode apt (Ubuntu Focal): status New Triaged
2021-02-18 15:06:26 Julian Andres Klode apt (Ubuntu Groovy): status New Triaged
2021-03-04 16:09:57 Julian Andres Klode description When running 'apt-get update' (e.g. on a container install post-install script), apt-get return with exit code 0, even so it wasn't able to "update" properly. E.g.: + apt-get update Err:1 http://de.archive.ubuntu.com/ubuntu xenial InRelease Temporary failure resolving 'de.archive.ubuntu.com' Err:2 http://security.ubuntu.com/ubuntu xenial-security InRelease Temporary failure resolving 'security.ubuntu.com' Err:3 http://de.archive.ubuntu.com/ubuntu xenial-updates InRelease Temporary failure resolving 'de.archive.ubuntu.com' Reading package lists... Done W: Failed to fetch http://de.archive.ubuntu.com/ubuntu/dists/xenial/InRelease Temporary failure resolving 'de.archive.ubuntu.com' W: Failed to fetch http://de.archive.ubuntu.com/ubuntu/dists/xenial-updates/InRelease Temporary failure resolving 'de.archive.ubuntu.com' W: Failed to fetch http://security.ubuntu.com/ubuntu/dists/xenial-security/InRelease Temporary failure resolving 'security.ubuntu.com' W: Some index files failed to download. They have been ignored, or old ones used instead. It should be corrected to return useful exit code, so that scripts can take the appropriate actions ... [Impact] There is no way for scripts to run apt update and be sure that it was entirely successful. We introduce a new flag, --error-mode=any [Test plan] We have included a test in the test-suite in test-apt-update-failure-propagation that ensures that warnings become errors. [Where problems could occur] If there's an issue some warnings for transient errors could become errors, or worse I suppose it's possible but unlikely for errors to be reported as warnings... Since the new behavior is behind a flag, regression potential for existing scripts is low if there is no bug. [Original bug report] When running 'apt-get update' (e.g. on a container install post-install script), apt-get return with exit code 0, even so it wasn't able to "update" properly. E.g.: + apt-get update Err:1 http://de.archive.ubuntu.com/ubuntu xenial InRelease   Temporary failure resolving 'de.archive.ubuntu.com' Err:2 http://security.ubuntu.com/ubuntu xenial-security InRelease   Temporary failure resolving 'security.ubuntu.com' Err:3 http://de.archive.ubuntu.com/ubuntu xenial-updates InRelease   Temporary failure resolving 'de.archive.ubuntu.com' Reading package lists... Done W: Failed to fetch http://de.archive.ubuntu.com/ubuntu/dists/xenial/InRelease Temporary failure resolving 'de.archive.ubuntu.com' W: Failed to fetch http://de.archive.ubuntu.com/ubuntu/dists/xenial-updates/InRelease Temporary failure resolving 'de.archive.ubuntu.com' W: Failed to fetch http://security.ubuntu.com/ubuntu/dists/xenial-security/InRelease Temporary failure resolving 'security.ubuntu.com' W: Some index files failed to download. They have been ignored, or old ones used instead. It should be corrected to return useful exit code, so that scripts can take the appropriate actions ...
2021-03-04 16:10:20 Julian Andres Klode description [Impact] There is no way for scripts to run apt update and be sure that it was entirely successful. We introduce a new flag, --error-mode=any [Test plan] We have included a test in the test-suite in test-apt-update-failure-propagation that ensures that warnings become errors. [Where problems could occur] If there's an issue some warnings for transient errors could become errors, or worse I suppose it's possible but unlikely for errors to be reported as warnings... Since the new behavior is behind a flag, regression potential for existing scripts is low if there is no bug. [Original bug report] When running 'apt-get update' (e.g. on a container install post-install script), apt-get return with exit code 0, even so it wasn't able to "update" properly. E.g.: + apt-get update Err:1 http://de.archive.ubuntu.com/ubuntu xenial InRelease   Temporary failure resolving 'de.archive.ubuntu.com' Err:2 http://security.ubuntu.com/ubuntu xenial-security InRelease   Temporary failure resolving 'security.ubuntu.com' Err:3 http://de.archive.ubuntu.com/ubuntu xenial-updates InRelease   Temporary failure resolving 'de.archive.ubuntu.com' Reading package lists... Done W: Failed to fetch http://de.archive.ubuntu.com/ubuntu/dists/xenial/InRelease Temporary failure resolving 'de.archive.ubuntu.com' W: Failed to fetch http://de.archive.ubuntu.com/ubuntu/dists/xenial-updates/InRelease Temporary failure resolving 'de.archive.ubuntu.com' W: Failed to fetch http://security.ubuntu.com/ubuntu/dists/xenial-security/InRelease Temporary failure resolving 'security.ubuntu.com' W: Some index files failed to download. They have been ignored, or old ones used instead. It should be corrected to return useful exit code, so that scripts can take the appropriate actions ... [Impact] There is no way for scripts to run apt update and be sure that it was entirely successful. We introduce a new flag, --error-mode=any that makes apt update also error out on transient errors. [Test plan] We have included a test in the test-suite in test-apt-update-failure-propagation that ensures that warnings become errors. [Where problems could occur] If there's an issue some warnings for transient errors could become errors, or worse I suppose it's possible but unlikely for errors to be reported as warnings... Since the new behavior is behind a flag, regression potential for existing scripts is low if there is no bug. [Original bug report] When running 'apt-get update' (e.g. on a container install post-install script), apt-get return with exit code 0, even so it wasn't able to "update" properly. E.g.: + apt-get update Err:1 http://de.archive.ubuntu.com/ubuntu xenial InRelease   Temporary failure resolving 'de.archive.ubuntu.com' Err:2 http://security.ubuntu.com/ubuntu xenial-security InRelease   Temporary failure resolving 'security.ubuntu.com' Err:3 http://de.archive.ubuntu.com/ubuntu xenial-updates InRelease   Temporary failure resolving 'de.archive.ubuntu.com' Reading package lists... Done W: Failed to fetch http://de.archive.ubuntu.com/ubuntu/dists/xenial/InRelease Temporary failure resolving 'de.archive.ubuntu.com' W: Failed to fetch http://de.archive.ubuntu.com/ubuntu/dists/xenial-updates/InRelease Temporary failure resolving 'de.archive.ubuntu.com' W: Failed to fetch http://security.ubuntu.com/ubuntu/dists/xenial-security/InRelease Temporary failure resolving 'security.ubuntu.com' W: Some index files failed to download. They have been ignored, or old ones used instead. It should be corrected to return useful exit code, so that scripts can take the appropriate actions ...
2021-03-05 18:58:56 Julian Andres Klode apt (Ubuntu Groovy): status Triaged In Progress
2021-03-24 22:34:12 Brian Murray apt (Ubuntu Groovy): status In Progress Fix Committed
2021-03-24 22:34:13 Brian Murray bug added subscriber Ubuntu Stable Release Updates Team
2021-03-24 22:34:16 Brian Murray bug added subscriber SRU Verification
2021-03-24 22:34:20 Brian Murray tags verification-needed verification-needed-groovy
2021-03-25 13:34:46 Łukasz Zemczak apt (Ubuntu Focal): status Triaged Fix Committed
2021-03-25 13:34:51 Łukasz Zemczak tags verification-needed verification-needed-groovy verification-needed verification-needed-focal verification-needed-groovy
2021-03-25 13:41:27 Łukasz Zemczak apt (Ubuntu Bionic): status Triaged Fix Committed
2021-03-25 13:41:32 Łukasz Zemczak tags verification-needed verification-needed-focal verification-needed-groovy verification-needed verification-needed-bionic verification-needed-focal verification-needed-groovy
2021-03-26 02:51:05 Mathew Hodson bug watch added https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=594813
2021-03-26 02:51:05 Mathew Hodson bug task added apt (Debian)
2021-03-26 02:52:41 Mathew Hodson description [Impact] There is no way for scripts to run apt update and be sure that it was entirely successful. We introduce a new flag, --error-mode=any that makes apt update also error out on transient errors. [Test plan] We have included a test in the test-suite in test-apt-update-failure-propagation that ensures that warnings become errors. [Where problems could occur] If there's an issue some warnings for transient errors could become errors, or worse I suppose it's possible but unlikely for errors to be reported as warnings... Since the new behavior is behind a flag, regression potential for existing scripts is low if there is no bug. [Original bug report] When running 'apt-get update' (e.g. on a container install post-install script), apt-get return with exit code 0, even so it wasn't able to "update" properly. E.g.: + apt-get update Err:1 http://de.archive.ubuntu.com/ubuntu xenial InRelease   Temporary failure resolving 'de.archive.ubuntu.com' Err:2 http://security.ubuntu.com/ubuntu xenial-security InRelease   Temporary failure resolving 'security.ubuntu.com' Err:3 http://de.archive.ubuntu.com/ubuntu xenial-updates InRelease   Temporary failure resolving 'de.archive.ubuntu.com' Reading package lists... Done W: Failed to fetch http://de.archive.ubuntu.com/ubuntu/dists/xenial/InRelease Temporary failure resolving 'de.archive.ubuntu.com' W: Failed to fetch http://de.archive.ubuntu.com/ubuntu/dists/xenial-updates/InRelease Temporary failure resolving 'de.archive.ubuntu.com' W: Failed to fetch http://security.ubuntu.com/ubuntu/dists/xenial-security/InRelease Temporary failure resolving 'security.ubuntu.com' W: Some index files failed to download. They have been ignored, or old ones used instead. It should be corrected to return useful exit code, so that scripts can take the appropriate actions ... [Impact] There is no way for scripts to run apt update and be sure that it was entirely successful. We introduce a new flag, --error-on=any that makes apt update also error out on transient errors. [Test plan] We have included a test in the test-suite in test-apt-update-failure-propagation that ensures that warnings become errors. [Where problems could occur] If there's an issue some warnings for transient errors could become errors, or worse I suppose it's possible but unlikely for errors to be reported as warnings... Since the new behavior is behind a flag, regression potential for existing scripts is low if there is no bug. [Original bug report] When running 'apt-get update' (e.g. on a container install post-install script), apt-get return with exit code 0, even so it wasn't able to "update" properly. E.g.: + apt-get update Err:1 http://de.archive.ubuntu.com/ubuntu xenial InRelease   Temporary failure resolving 'de.archive.ubuntu.com' Err:2 http://security.ubuntu.com/ubuntu xenial-security InRelease   Temporary failure resolving 'security.ubuntu.com' Err:3 http://de.archive.ubuntu.com/ubuntu xenial-updates InRelease   Temporary failure resolving 'de.archive.ubuntu.com' Reading package lists... Done W: Failed to fetch http://de.archive.ubuntu.com/ubuntu/dists/xenial/InRelease Temporary failure resolving 'de.archive.ubuntu.com' W: Failed to fetch http://de.archive.ubuntu.com/ubuntu/dists/xenial-updates/InRelease Temporary failure resolving 'de.archive.ubuntu.com' W: Failed to fetch http://security.ubuntu.com/ubuntu/dists/xenial-security/InRelease Temporary failure resolving 'security.ubuntu.com' W: Some index files failed to download. They have been ignored, or old ones used instead. It should be corrected to return useful exit code, so that scripts can take the appropriate actions ...
2021-03-26 02:54:12 Launchpad Janitor apt (Ubuntu Xenial): status New Confirmed
2021-03-26 02:58:39 Mathew Hodson bug watch removed https://github.com/moby/moby/issues/23910
2021-03-26 02:58:52 Mathew Hodson bug watch removed https://github.com/moby/libnetwork/issues/1654
2021-03-26 03:00:20 Mathew Hodson apt (Ubuntu Xenial): importance Undecided Wishlist
2021-03-26 03:00:24 Mathew Hodson apt (Ubuntu Bionic): importance Undecided Wishlist
2021-03-26 03:00:27 Mathew Hodson apt (Ubuntu Focal): importance Undecided Wishlist
2021-03-26 03:00:29 Mathew Hodson apt (Ubuntu Groovy): importance Undecided Wishlist
2021-03-26 03:09:54 Mathew Hodson bug watch removed https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=776152
2021-03-26 03:45:24 Bug Watch Updater apt (Debian): status Unknown Fix Released
2021-03-30 09:29:33 Julian Andres Klode tags verification-needed verification-needed-bionic verification-needed-focal verification-needed-groovy verification-done-bionic verification-done-focal verification-done-groovy verification-needed
2021-03-30 09:29:39 Julian Andres Klode tags verification-done-bionic verification-done-focal verification-done-groovy verification-needed verification-done verification-done-bionic verification-done-focal verification-done-groovy
2021-04-06 18:04:32 Launchpad Janitor apt (Ubuntu Groovy): status Fix Committed Fix Released
2021-04-06 18:04:53 Brian Murray removed subscriber Ubuntu Stable Release Updates Team
2021-04-07 02:17:59 Launchpad Janitor apt (Ubuntu Bionic): status Fix Committed Fix Released
2021-04-07 02:21:00 Launchpad Janitor apt (Ubuntu Focal): status Fix Committed Fix Released