diff options
author | meimei <meimei@huawei.com> | 2017-02-08 17:31:47 +0800 |
---|---|---|
committer | meimei <meimei@huawei.com> | 2017-02-09 09:09:52 +0800 |
commit | 01fe2364f175bc0904003e281df66cdaaedea869 (patch) | |
tree | f73cc311319a0c23be7ec8b4df5139aad0345184 /utils | |
parent | 5e8a41834d417ccb6d6d219dd23e182396a1e01b (diff) |
[bugfix] wrong regular expression to fetch controller ip by hostname
Change-Id: Idcf6739498837e828dd65897f599dada720fb48e
Signed-off-by: meimei <meimei@huawei.com>
Diffstat (limited to 'utils')
-rwxr-xr-x | utils/fetch_os_creds.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/fetch_os_creds.sh b/utils/fetch_os_creds.sh index c1e21f316..f00e022f9 100755 --- a/utils/fetch_os_creds.sh +++ b/utils/fetch_os_creds.sh @@ -144,7 +144,7 @@ elif [ "$installer_type" == "compass" ]; then verify_connectivity $installer_ip controller_ip=$(sshpass -p'root' ssh 2>/dev/null $ssh_options root@${installer_ip} \ 'mysql -ucompass -pcompass -Dcompass -e"select * from cluster;"' \ - | awk -F"," '{for(i=1;i<NF;i++)if($i~/\"host[1-5]\"/) {print $(i+1);break;}}' \ + | awk -F"," '{for(i=1;i<NF;i++)if($i~/\"127.0.0.1\"/) {print $(i+2);break;}}' \ | grep -oP "\d+.\d+.\d+.\d+") if [ -z $controller_ip ]; then |