Update "=" to "==" in "if" condition

Keep consistent with other "if" condition
TrivialFix

Change-Id: I18fea71bd50729642543afd4d3bab0b7dfaecd3d
This commit is contained in:
caoyuan 2016-10-22 17:04:13 +08:00
parent 430ddf9dd3
commit 5bdf98f7b5
1 changed files with 3 additions and 3 deletions

View File

@ -13,7 +13,7 @@ KOLLA_PATH=$3
export http_proxy=
export https_proxy=
if [ "$MODE" = 'aio' ]; then
if [ "$MODE" == 'aio' ]; then
# Run registry on port 4000 since it may collide with keystone when doing AIO
REGISTRY_PORT=4000
else
@ -54,7 +54,7 @@ function is_centos {
# Install common packages and do some prepwork.
function prep_work {
if [[ "$(systemctl is-enabled firewalld)" = "enabled" ]]; then
if [[ "$(systemctl is-enabled firewalld)" == "enabled" ]]; then
systemctl stop firewalld
systemctl disable firewalld
fi
@ -219,7 +219,7 @@ EOF
prep_work
install_docker
if [[ "$VM" = "operator" ]]; then
if [[ "$VM" == "operator" ]]; then
configure_operator
fi