8 lines
123 B
Plaintext
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
|