Re-applied _override_sigchecks = True
After figuring out why this happened on a new vm deployment it appears to be due to the gpg check of epel causing problems that cause yyoom to fail. Fixes bug 1210657 Change-Id: I46f8972fb8676945a1c1edc6d1aba33c81faacce
This commit is contained in:
parent
2068dbe978
commit
bb7d92777a
@ -277,6 +277,9 @@ def _setup_logging(verbose=True):
|
|||||||
def _get_yum_base():
|
def _get_yum_base():
|
||||||
base = yum.YumBase()
|
base = yum.YumBase()
|
||||||
base.setCacheDir(force=True)
|
base.setCacheDir(force=True)
|
||||||
|
# Fixes: https://bugs.launchpad.net/anvil/+bug/1210657
|
||||||
|
# See: http://lists.baseurl.org/pipermail/yum-devel/2013-January/009873.html
|
||||||
|
base._override_sigchecks = True
|
||||||
return base
|
return base
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user