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