aboutsummaryrefslogtreecommitdiffstats
path: root/opnfv/deployment/factory.py
diff options
context:
space:
mode:
authorjose.lausuch <jose.lausuch@ericsson.com>2017-02-23 00:17:04 +0100
committerAric Gardner <agardner@linuxfoundation.org>2017-02-23 21:35:41 +0000
commit7a6664e5bacdd8b3730aae8e0f8e6e0ff3b918ba (patch)
treeb8158b22ccec40c1e118df988508003825db0b7e /opnfv/deployment/factory.py
parentce38fb01e5b179214573b66ffb6ce6c23fa8525c (diff)
[deployment_handler] Fix problem when trying to run ovs-vsctl on Fuel
When creating a Node object, it fetches the ovs version in the init method. This prevents doing this if the node is the installer. Anyways, the information about the installer node is not showed. Error: opnfv.deployment.manager - ERROR - error bash: ovs-vsctl: command not found Example of this output: https://build.opnfv.org/ci/view/functest/job/functest-fuel-baremetal-daily-master/1161/consoleFull Change-Id: I7b5d41af438e18dffa3b1eab2c9279164a4d4fc2 Signed-off-by: jose.lausuch <jose.lausuch@ericsson.com>
Diffstat (limited to 'opnfv/deployment/factory.py')
-rw-r--r--opnfv/deployment/factory.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/opnfv/deployment/factory.py b/opnfv/deployment/factory.py
index e48a751..1ccee4e 100644
--- a/opnfv/deployment/factory.py
+++ b/opnfv/deployment/factory.py
@@ -41,4 +41,5 @@ class Factory(object):
installer_user=installer_user,
installer_pwd=installer_pwd)
else:
- raise Exception("Installer adapter is not implemented.")
+ raise Exception("Installer adapter is not implemented for "
+ "the given installer.")