mirror of https://github.com/ceph/ceph-ansible.git
21 lines
621 B
Django/Jinja
21 lines
621 B
Django/Jinja
#!/bin/bash
|
|
|
|
RETRIES="{{ handler_health_mgr_check_retries }}"
|
|
DELAY="{{ handler_health_mgr_check_delay }}"
|
|
MGR_NAME="{{ ansible_hostname }}"
|
|
SOCKET=/var/run/ceph/{{ cluster }}-mgr.${MGR_NAME}.asok
|
|
|
|
# First, restart the daemon
|
|
systemctl restart ceph-mgr@${MGR_NAME}
|
|
|
|
COUNT=10
|
|
# Wait and ensure the socket exists after restarting the daemds
|
|
while [ $RETRIES -ne 0 ]; do
|
|
{{ docker_exec_cmd }} test -S $SOCKET && exit 0
|
|
sleep $DELAY
|
|
let RETRIES=RETRIES-1
|
|
done
|
|
# If we reach this point, it means the socket is not present.
|
|
echo "Socket file ${SOCKET} could not be found, which means ceph manager is not running."
|
|
exit 1
|