30f3c02fc7
This image is shared by two containers so the healthcheck needs to first check which container it is before building the URL to check. Change-Id: If5b77481330fa697f1bab16696acb70075052d4f
17 lines
425 B
Bash
17 lines
425 B
Bash
#!/bin/sh
|
|
|
|
. ${HEALTHCHECK_SCRIPTS:-/usr/share/openstack-tripleo-common/healthcheck}/common.sh
|
|
|
|
if grep "/httpd " /run_command ; then
|
|
bind_host=127.0.0.1
|
|
bind_port=$(grep "^Listen " /etc/httpd/conf.d/10-ipxe_vhost.conf | awk '{print $2}')
|
|
protocol=http
|
|
path=
|
|
else
|
|
bind_host=127.0.0.1
|
|
bind_port=69
|
|
protocol=tftp
|
|
path=map-file
|
|
fi
|
|
healthcheck_curl ${protocol}://${bind_host}:${bind_port}/${path}
|