7ee105a0c6
In case of IPv6 URLs brackets are required. This adds a check for IPv6 and adds brackets if needed. Change-Id: If0931c605c92adc74c9a743faacff56cbe5db7f5
21 lines
558 B
Bash
Executable File
21 lines
558 B
Bash
Executable File
#!/bin/bash
|
|
|
|
. ${HEALTHCHECK_SCRIPTS:-/usr/share/openstack-tripleo-common/healthcheck}/common.sh
|
|
|
|
bind_host=$(get_config_val /etc/nova/nova.conf vnc novncproxy_host 127.0.0.1)
|
|
bind_port=$(get_config_val /etc/nova/nova.conf vnc novncproxy_port 6080)
|
|
proto_is_ssl=$(get_config_val /etc/nova/nova.conf DEFAULT ssl_only false)
|
|
|
|
bind_proto=http
|
|
|
|
if [ "${proto_is_ssl,,}" = true ] ; then
|
|
bind_proto=https
|
|
fi
|
|
|
|
# Add brackets if IPv6
|
|
if [[ $bind_host =~ ":" ]]; then
|
|
bind_host="[${bind_host}]"
|
|
fi
|
|
|
|
healthcheck_curl ${bind_proto}://${bind_host}:${bind_port}/
|