puppet-prod/site/profiles/templates/proxmox/check_ceph_service.sh.erb

8 lines
123 B
Plaintext

#!/bin/bash
if [ $# -eq 0 ]; then
echo "No service specified"
exit 1
fi
pgrep -x ceph-${1} > /dev/null 2>&1 || exit 1