diff options
author | bryan <bryan.sullivan@att.com> | 2017-03-06 09:57:18 -0800 |
---|---|---|
committer | bryan <bryan.sullivan@att.com> | 2017-03-06 09:57:18 -0800 |
commit | 186ffae2257713b6a57d6bd156fa131592da334d (patch) | |
tree | a2eb1dc88cd42d6d322052ad43161bc806eafddf /tests/vHello_VES.sh | |
parent | 146b361b37bb0433f0fdb5c8ef3bcb1ab9580266 (diff) |
Fix bugs in tacker-setup use. Remove vHello_VES_3Node test.
JIRA: VES-1
Change-Id: I773266eb00f800e36cf110da8cc8c65f9517edab
Signed-off-by: bryan <bryan.sullivan@att.com>
Diffstat (limited to 'tests/vHello_VES.sh')
-rw-r--r-- | tests/vHello_VES.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/vHello_VES.sh b/tests/vHello_VES.sh index bbddfa5..91d615a 100644 --- a/tests/vHello_VES.sh +++ b/tests/vHello_VES.sh @@ -124,7 +124,8 @@ setup () { chmod 755 /opt/tacker/*.sh echo "$0: $(date) tacker-setup part 1" - bash utils/tacker-setup.sh init + wget https://git.opnfv.org/models/plain/tests/utils/tacker-setup.sh -O /tmp/tacker-setup.sh + bash /tmp/tacker-setup.sh init if [ $? -eq 1 ]; then fail; fi echo "$0: $(date) tacker-setup part 2" @@ -166,8 +167,8 @@ copy_blueprint() { fi echo "$0: $(date) copy tosca-vnfd-hello-ves to blueprints folder" + if [[ ! -d /opt/tacker/blueprints ]]; then mkdir /opt/tacker/blueprints; fi cp -r blueprints/tosca-vnfd-hello-ves /opt/tacker/blueprints/tosca-vnfd-hello-ves - cp $0 /opt/tacker/. } start() { |