diff options
author | 2020-06-28 12:27:25 +0800 | |
---|---|---|
committer | 2020-06-28 04:29:39 +0000 | |
commit | fa7d22ac3a1fd96b6f6d6169ba31c0dc331d9ff5 (patch) | |
tree | d2406df01c1107958056ecc2eae6c39c3250454e /docker | |
parent | 25a5b7ae680a120672faae4c2a1381b9e89f2a14 (diff) |
Fix typo error
Change-Id: I4d1d306f3535104a31f25cf9008eb852e59307db
Issue-ID: MODELING-372
Signed-off-by: dengyh <dengyuanhong@chinamobile.com>
Diffstat (limited to 'docker')
-rwxr-xr-x | docker/instance_config.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/instance_config.sh b/docker/instance_config.sh index 7fcaa7a..f4abef0 100755 --- a/docker/instance_config.sh +++ b/docker/instance_config.sh @@ -23,7 +23,7 @@ fi if [ $SSL_ENABLED ]; then - sed -i "s|SSL_ENABLED.*|SSL_ENABLED = '$SSL_ENABLED'|" modeling/etsicatalog/catalog/pub/config/config.py + sed -i "s|SSL_ENABLED = .*|SSL_ENABLED = '$SSL_ENABLED'|" modeling/etsicatalog/catalog/pub/config/config.py fi MYSQL_IP=`echo $MYSQL_ADDR | cut -d: -f 1` |