- refacter the pveceph facts - define consul services for osd, mgr, mds and mons
11 lines
142 B
Plaintext
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
|