Do not automatically pass '-v' to yummain.

This commit is contained in:
David Cantrell 2008-10-04 21:31:41 -10:00
parent d13c27c6f2
commit 508e074126

View File

@ -118,7 +118,7 @@ def installPackages(yumconf=None, destdir=None, packages=None):
if yumconf is None or destdir is None or packages is None or packages == []:
return False
arglist = ['-c', yumconf, '-v']
arglist = ['-c', yumconf]
arglist.append("--installroot=%s" % (destdir,))
arglist += ['install', '-y'] + packages