669f4b5454
The service does not connect to RabbitMQ, but to ovsdb instead. This patch makes the script check the correct port. Change-Id: I85fc431c7566c6bb74af2173cd3b92b7bf74424d
15 lines
340 B
Bash
Executable File
15 lines
340 B
Bash
Executable File
#!/bin/bash
|
|
|
|
. ${HEALTHCHECK_SCRIPTS:-/usr/share/openstack-tripleo-common/healthcheck}/common.sh
|
|
|
|
process='networking-ovn-metadata-agent'
|
|
args="${@:-6642}"
|
|
|
|
if healthcheck_port $process $args; then
|
|
exit 0
|
|
else
|
|
ports=${args// /,}
|
|
echo "There is no $process process connected to ovsdb ports $ports running in the container"
|
|
exit 1
|
|
fi
|