From: Michael Vogt <michael.vogt@ubuntu.com> Date: Mon, 20 Feb 2006 18:50:44 +0000 (+0000) Subject: * make errors during apt-get update warnings only (default sources spec) X-Git-Tag: 0.7.24ubuntu1~269 X-Git-Url: https://git.saurik.com/apt.git/commitdiff_plain/9ceaa28f2ce0bde0cbf6f73a32a68761ec85f11d * make errors during apt-get update warnings only (default sources spec) --- diff --git a/cmdline/apt-get.cc b/cmdline/apt-get.cc index d4a6bee32..92051f8ff 100644 --- a/cmdline/apt-get.cc +++ b/cmdline/apt-get.cc @@ -1381,7 +1381,7 @@ bool DoUpdate(CommandLine &CmdL) return false; if (Failed == true) - return _error->Error(_("Some index files failed to download, they have been ignored, or old ones used instead.")); + return _error->Warning(_("Some index files failed to download, they have been ignored, or old ones used instead.")); return true; } diff --git a/debian/changelog b/debian/changelog index 92a4671f9..3490fba7c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -25,6 +25,7 @@ apt (0.6.43.3) unstable; urgency=low * make apt-cache madison work without deb-src entries (#352583) * cmdline/apt-get.cc: only run the list-cleaner if a update was successfull + * apt-get update errors are only warnings nowdays --