26a3d7e6d0
This change fixes few linting errors which are discovered by newer linters. - bashate: consistent 4 chars identation - python unamed Exceptions - python space around operators - python space after # comments - python unused imports - python unknown escapes (errors after py36) - python double newline before methods Change-Id: I5d2f37d1c820b1983355be60c09de581a72e08e0 Needed-By: https://review.opendev.org/#/c/665445/
20 lines
725 B
Bash
Executable File
20 lines
725 B
Bash
Executable File
#!/bin/bash
|
|
|
|
. ${HEALTHCHECK_SCRIPTS:-/usr/share/openstack-tripleo-common/healthcheck}/common.sh
|
|
|
|
file=/opt/opendaylight/etc/org.ops4j.pax.web.cfg
|
|
bind_host=$(awk -F "= *" '/^org.ops4j.pax.web.listening.addresses/ {print $2}' $file)
|
|
tls_enabled=$(awk -F "= *" '/^org.osgi.service.http.secure.enabled/ {print $2}' $file)
|
|
if [[ -z "$tls_enabled" || "$tls_enabled" != "true" ]]; then
|
|
bind_port=$(awk -F "= *" '/^org.osgi.service.http.port\s*=/ {print $2}' $file)
|
|
else
|
|
bind_port=$(awk -F "= *" '/^org.osgi.service.http.port.secure/ {print $2}' $file)
|
|
fi
|
|
|
|
# Make Healthcheck URL IPv6 compatible
|
|
if [[ $bind_host =~ .*:.* ]]; then
|
|
bind_host="[${bind_host}]"
|
|
fi
|
|
|
|
healthcheck_curl http://$bind_host:$bind_port/diagstatus
|