This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
zhangzhihan-device-manageme…/roles/ha_backup/templates/check_oam_service.sh.j2

23 lines
399 B
Django/Jinja

#!/bin/bash
#running:0, stop:3
STATE=$(systemctl status oam_cluster.service)
if [ $STATE -ne 0 ]
then
systemctl restart oam_cluster
sleep 10
STATE=$(systemctl status oam_cluster.service)
if [ $STATE -ne 0 ]
then
killall keepalived
exit 1
else
exit 0
fi
else
exit 0
fi
#todo ,check consul_cluster, check influxdb