tripleo-common/healthcheck/ironic-pxe
Derek Higgins 30f3c02fc7 Add health check command for ironic-pxe image
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
2017-09-04 10:39:20 +01:00

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}