From a06a031c5865f34c2a651ef170778149fb8f0396 Mon Sep 17 00:00:00 2001 From: Stefan Kobza Date: Mon, 22 Feb 2016 21:49:27 +0100 Subject: Automate VIRL simulation life cycle. Change-Id: I126c42b994c1356acc202f4ec1b153c790c43d46 Signed-off-by: Stefan Kobza --- resources/libraries/python/SetupFramework.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'resources/libraries/python/SetupFramework.py') diff --git a/resources/libraries/python/SetupFramework.py b/resources/libraries/python/SetupFramework.py index 47c609fada..cb0d536987 100644 --- a/resources/libraries/python/SetupFramework.py +++ b/resources/libraries/python/SetupFramework.py @@ -84,11 +84,25 @@ def create_env_directory_at_node(node): logger.error('Virtualenv creation error: {0}'.format(stdout + stderr)) raise Exception('Virtualenv setup failed') +def install_dependencies(node): + """TEMPORARY FUNCTION TO INSTALL DEPENDENCIES ON NODES BEFORE THE VIRL + HOSTS HAVE ALL PREREQUISITES INSTALLED""" + logger.console('Installing prerequisites on {0}'.format(node['host'])) + ssh = SSH() + ssh.connect(node) + (ret_code, stdout, stderr) = ssh.exec_command( + 'sudo apt-get -y update; ' \ + 'sudo apt-get -y install python-virtualenv python-dev', timeout=120) + if 0 != ret_code: + logger.error('Failed to install prerequisites: {0}'. + format(stdout + stderr)) + raise Exception('Virtualenv setup failed') def setup_node(args): tarball, remote_tarball, node = args copy_tarball_to_node(tarball, node) extract_tarball_at_node(remote_tarball, node) + install_dependencies(node) if node['type'] == NodeType.TG: create_env_directory_at_node(node) -- cgit 1.2.3-korg