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:
Joshua Harlow 2013-08-09 14:07:53 -07:00
parent 2068dbe978
commit bb7d92777a

View File

@ -277,6 +277,9 @@ def _setup_logging(verbose=True):
def _get_yum_base():
base = yum.YumBase()
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