Remove force install of PBR due, to PBR being capped

Change-Id: Idb765e67b18bf74cb5501b5b67ec549c1c461c5c
This commit is contained in:
Kris Lindgren 2015-08-28 15:41:03 -07:00
parent bfa51394a2
commit db28756ac0
1 changed files with 0 additions and 2 deletions

View File

@ -51,7 +51,6 @@ class VenvInstallHelper(base.InstallHelper):
class VenvDependencyHandler(base.DependencyHandler):
PREREQUISITE_PKGS = frozenset(['pbr'])
PREREQUISITE_UPGRADE_PKGS = frozenset(['pip'])
def __init__(self, distro, root_dir,
@ -175,7 +174,6 @@ class VenvDependencyHandler(base.DependencyHandler):
LOG.info("Creating virtualenv at %s", colorizer.quote(venv_dir))
out_filename = sh.joinpths(self.log_dir, "venv-create-%s.log" % (instance.name))
sh.execute_save_output(cmd, out_filename)
self._install_into_venv(instance, self.PREREQUISITE_PKGS)
self._install_into_venv(instance,
self.PREREQUISITE_UPGRADE_PKGS,
upgrade=True)