From 76a38b9f24f281897922ae5f5d929592ee2c9291 Mon Sep 17 00:00:00 2001 From: Jose Lausuch Date: Thu, 16 Feb 2017 19:31:03 +0000 Subject: Revert "Add deployment_handler printout to prepare env" This is causing some problems. https://build.opnfv.org/ci/view/functest/job/functest-fuel-baremetal-daily-master/1121/console This reverts commit 9886535d617d95e7d2c2f294e79a7cd994fcd685. Change-Id: I8524dff5deea073f0975df1e712766620002523e Signed-off-by: jose.lausuch --- functest/ci/prepare_env.py | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/functest/ci/prepare_env.py b/functest/ci/prepare_env.py index d2e773125..6b24fe086 100755 --- a/functest/ci/prepare_env.py +++ b/functest/ci/prepare_env.py @@ -21,8 +21,6 @@ import subprocess import sys import yaml - -from opnfv.deployment import factory from opnfv.utils import constants as opnfv_constants import functest.utils.functest_logger as ft_logger @@ -109,27 +107,6 @@ def check_env_variables(): logger.info(" IS_CI_RUN=%s" % CONST.IS_CI_RUN) -def print_deployment_info(): - handler = None - if CONST.INSTALLER_IP: - if CONST.INSTALLER_TYPE == 'apex': - pkey = '/root/.ssh/id_rsa' - if os.path.isfile(pkey): - handler = factory.Factory.get_handler(CONST.INSTALLER_TYPE, - CONST.INSTALLER_IP, - 'stack', - pkey_file=pkey) - elif CONST.INSTALLER_TYPE == 'fuel': - handler = factory.Factory.get_handler(CONST.INSTALLER_TYPE, - CONST.INSTALLER_IP, - 'root', - installer_pwd='r00tme') - - if handler: - logger.info('\n\nDeployment information:\n%s' % - handler.get_deployment_info()) - - def create_directories(): print_separator() logger.info("Creating needed directories...") @@ -309,7 +286,6 @@ def main(**kwargs): elif kwargs['action'] == "start": logger.info("######### Preparing Functest environment #########\n") check_env_variables() - print_deployment_info() create_directories() source_rc_file() patch_config_file() -- cgit 1.2.3-korg