From: Michael Vogt Date: Thu, 24 Mar 2011 17:01:25 +0000 (+0100) Subject: methods/mirror.cc: raise error if the mirror file can not be read X-Git-Tag: 0.9.13.exp1ubuntu1~197^2 X-Git-Url: https://git.saurik.com/apt.git/commitdiff_plain/b46fb8ff65bf345e51b11946783b450f6fa8f0a8 methods/mirror.cc: raise error if the mirror file can not be read --- diff --git a/methods/mirror.cc b/methods/mirror.cc index 00757e61f..2cf5c9ce1 100644 --- a/methods/mirror.cc +++ b/methods/mirror.cc @@ -256,6 +256,13 @@ bool MirrorMethod::InitMirrors() return _error->Error(_("No mirror file '%s' found "), MirrorFile.c_str()); } + if (access(MirrorFile.c_str(), R_OK) != 0) + { + // FIXME: fallback to a default mirror here instead + // and provide a config option to define that default + return _error->Error(_("Can not read mirror file '%s'"), MirrorFile.c_str()); + } + // FIXME: make the mirror selection more clever, do not // just use the first one! // BUT: we can not make this random, the mirror has to be