From 64e315aa74bbc02a97a25d0b38b9cdd6d94718b4 Mon Sep 17 00:00:00 2001 From: Ionut Balutoiu Date: Fri, 25 Sep 2015 15:38:39 +0300 Subject: [PATCH] Fixed config option name typo and removed wheel-mirror --- infra/deployer/BundleGenerator.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/infra/deployer/BundleGenerator.py b/infra/deployer/BundleGenerator.py index 109c2b6..cf1ff61 100644 --- a/infra/deployer/BundleGenerator.py +++ b/infra/deployer/BundleGenerator.py @@ -27,15 +27,14 @@ def _get_ad_service(self, nr_units, domain_name, admin_password, nr_units, ad_options) def _get_hyper_v_service(self, nr_units, download_mirror, extra_python_packages=None, - git_user_email=None, git_user_name=None, wheel_mirror=None, - ppy_mirror=None, vmswitch_name=None, vmswitch_management=None, + git_user_email=None, git_user_name=None, pypi_mirror=None, + vmswitch_name=None, vmswitch_management=None, ad_user_name=None, enable_freerdp_console=None): hyper_v_options = {'download-mirror': download_mirror, 'extra-python-packages': extra_python_packages, 'git-user-email': git_user_email, 'git-user-name': git_user_name, - 'wheel-mirror': wheel_mirror, - 'ppy-mirror': ppy_mirror, + 'pypi-mirror': pypi_mirror, 'vmswitch-name': vmswitch_name, 'vmswitch-management': vmswitch_management, 'ad-user-name': ad_user_name, @@ -81,7 +80,7 @@ def nova_bundle(self): extra_python_packages=self.options.hyper_v_extra_python_packages, git_user_email='hyper-v_ci@microsoft.com', git_user_name='Hyper-V CI', - wheel_mirror='http://64.119.130.115/wheels') + pypi_mirror='http://64.119.130.115/wheels') devstack_service = self._get_devstack_service( nr_units=self.options.nr_devstack_units,