You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
958 B
22 lines
958 B
7 years ago
|
commit fb107337b2490d314a4f31562427cdebe9eca4e4
|
||
|
Author: Valentina Mukhamedzhanova <vmukhame@redhat.com>
|
||
|
Date: Thu Mar 17 16:35:29 2016 +0100
|
||
|
|
||
|
Disable repo with skip_if_unavailable=True if repomd.xml can't be retrieved.
|
||
|
|
||
|
diff --git a/yum/yumRepo.py b/yum/yumRepo.py
|
||
|
index fc5d538..3f7e975 100644
|
||
|
--- a/yum/yumRepo.py
|
||
|
+++ b/yum/yumRepo.py
|
||
|
@@ -1460,6 +1460,10 @@ Insufficient space in download directory %s
|
||
|
else:
|
||
|
result = self._getFileRepoXML(local, text)
|
||
|
if result is None:
|
||
|
+ if self.skip_if_unavailable and self._metadata_cache_req in ('write', 'read-only:future'):
|
||
|
+ # Since skip_if_unavailable=True, we can just disable this repo
|
||
|
+ raise Errors.RepoError, "Can't download repomd.xml for %s" % self.ui_id
|
||
|
+
|
||
|
# Ignore this as we have a copy
|
||
|
self._revertOldRepoXML()
|
||
|
return False
|