puppet-prod/site/profiles/templates/proxmox/check_ceph_service.sh.erb
Ben Vincent 94aed2df9c feat: add pveceph consul services
- refacter the pveceph facts
- define consul services for osd, mgr, mds and mons
2024-06-18 21:14:57 +10:00

11 lines
142 B
Plaintext

#!/bin/bash
if [ $# -eq 0 ]; then
echo "No service specified"
exit 1
fi
if systemctl is-active --quiet $1; then
exit 0
else
exit 2
fi