openvidu-deployment: Fix all empty parameters CF

pull/570/head
cruizba 2020-11-25 20:57:39 +01:00
parent 7a6ba61712
commit d3c75a455f
1 changed files with 2 additions and 2 deletions

View File

@ -657,10 +657,10 @@ Resources:
# Start openvidu application # Start openvidu application
pushd /opt/openvidu pushd /opt/openvidu
docker-compose up -d docker-compose up -d
if [[ ! -z ${ElasticsearchUrl} ]]; then if [[ ! -z "${ElasticsearchUrl}" ]]; then
docker-compose stop elasticsearch docker-compose stop elasticsearch
fi fi
if [[ ! -z ${KibanaUrl} ]]; then if [[ ! -z "${KibanaUrl}" ]]; then
docker-compose stop kibana docker-compose stop kibana
fi fi
popd popd