aboutsummaryrefslogtreecommitdiffstats
path: root/resources/libraries/python/SetupFramework.py
diff options
context:
space:
mode:
Diffstat (limited to 'resources/libraries/python/SetupFramework.py')
-rw-r--r--resources/libraries/python/SetupFramework.py14
1 files changed, 14 insertions, 0 deletions
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)