summaryrefslogtreecommitdiffstats
path: root/utils/env_prepare/moon_prepare.py
diff options
context:
space:
mode:
authorAce Lee <liyin11@huawei.com>2018-01-09 03:19:09 +0000
committerliyin <liyin11@huawei.com>2018-02-26 08:58:07 +0000
commit06db2e37272bb3a030c2b5f2e255ec6a61f17472 (patch)
treee858fe31ec183eb4ff326f16763856db543e9d83 /utils/env_prepare/moon_prepare.py
parentc79a7da0de95b42f66c2a6f214372514c9c246db (diff)
Moon testcase bug fix
JIRA: BOTTLENECK-220 The JIRA ticket is to suit moon version 4.3. There are some bugs to fix. Change-Id: Idf8b9a2b4dea6508738283e76457b8d1d25ceae9 Signed-off-by: Ace Lee <liyin11@huawei.com>
Diffstat (limited to 'utils/env_prepare/moon_prepare.py')
-rw-r--r--utils/env_prepare/moon_prepare.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/utils/env_prepare/moon_prepare.py b/utils/env_prepare/moon_prepare.py
new file mode 100644
index 00000000..41739454
--- /dev/null
+++ b/utils/env_prepare/moon_prepare.py
@@ -0,0 +1,25 @@
+#!/usr/bin/env python
+##############################################################################
+# Copyright (c) 2018 Huawei Technologies Co.,Ltd and others.
+#
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Apache License, Version 2.0
+# which accompanies this distribution, and is available at
+# http://www.apache.org/licenses/LICENSE-2.0
+##############################################################################
+import utils.infra_setup.passwordless_SSH.ssh as localssh
+
+
+def moon_envprepare(host_info):
+ if ("password") in host_info:
+ client = localssh.SSH(user=host_info["user"],
+ host=host_info["ip"],
+ password=host_info["password"])
+ else:
+ client = localssh.SSH(user=host_info["user"],
+ host=host_info["ip"],
+ key_filename=host_info["keyfile"])
+ with open("/home/opnfv/bottlenecks/utils/env_prepare/moon_prepare.bash",
+ "rb") as stdin_file:
+ client.run("cat > ~/bottlenecks_envprepare.bash", stdin=stdin_file)
+ client.execute("sudo bash ~/bottlenecks_envprepare.bash")