diff options
author | Konrad Bańka <k.banka@samsung.com> | 2019-07-30 09:02:42 +0200 |
---|---|---|
committer | Brian Freeman <bf1936@att.com> | 2019-07-30 14:32:31 +0000 |
commit | a3990d05cd7a7f92a383cdeb9e4e89f0bc0d8a7b (patch) | |
tree | 67c9a1484289c3a69ab6f9c9e572a7bc41ed9f08 /deployment/heat/onap-rke/scripts | |
parent | 86223f2aeffa0f4f43f0a4cc7dc6100ca44b671f (diff) |
Correct minor issues in onap deployment scripts
Generated by deploy.sh heat template has been fixed to allow
provisioning onap without proxy. Some minor fixes have been
also implemented in openstack resources checks and git operations.
Issue-ID: MULTICLOUD-708
Signed-off-by: Konrad Bańka <k.banka@samsung.com>
Change-Id: Ie97b1845e217068a1c5634fbf8f2864cd4a4da29
Diffstat (limited to 'deployment/heat/onap-rke/scripts')
-rwxr-xr-x | deployment/heat/onap-rke/scripts/teardown-onap.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/deployment/heat/onap-rke/scripts/teardown-onap.sh b/deployment/heat/onap-rke/scripts/teardown-onap.sh index e6805ff9f..f46525074 100755 --- a/deployment/heat/onap-rke/scripts/teardown-onap.sh +++ b/deployment/heat/onap-rke/scripts/teardown-onap.sh @@ -112,7 +112,7 @@ else STACK=$install_name - STATUS=$(openstack stack check $STACK) + STATUS=$(openstack stack check $STACK 2>&1) if [ "Stack not found: $install_name" != "$STATUS" ]; then openstack stack delete $STACK |