diff --git a/src/pylorax/instroot.py b/src/pylorax/instroot.py index 8d9cf982..c84dad11 100644 --- a/src/pylorax/instroot.py +++ b/src/pylorax/instroot.py @@ -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