From 362f0a0cd2546761d074bb9def2bf9e5af466efe Mon Sep 17 00:00:00 2001 From: Monty Taylor Date: Fri, 26 Aug 2016 15:17:43 -0500 Subject: [PATCH] Also use the virtualenv for checking There is a script we use to check the results of the nodepool devstack tests. It needs to use the nodepool virtualenv. Change-Id: I40f5165d36060643943bcb91df14e5e34cd5e3fa --- tools/check_devstack_plugin.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/check_devstack_plugin.sh b/tools/check_devstack_plugin.sh index 00339e2a5..46d6245ae 100755 --- a/tools/check_devstack_plugin.sh +++ b/tools/check_devstack_plugin.sh @@ -1,8 +1,9 @@ #!/bin/bash -x +NODEPOOL_INSTALL=${NODEPOOL_INSTALL:-/opt/stack/new/nodepool-venv} NODEPOOL_CONFIG=${NODEPOOL_CONFIG:-/etc/nodepool/nodepool.yaml} NODEPOOL_SECURE=${NODEPOOL_SECURE:-/etc/nodepool/secure.conf} -NODEPOOL="nodepool -c $NODEPOOL_CONFIG -s $NODEPOOL_SECURE" +NODEPOOL="$NODEPOOL_INSTALL/bin/nodepool -c $NODEPOOL_CONFIG -s $NODEPOOL_SECURE" function waitforimage { name=$1