ungleich-tools/ceph-mon-stop-delete
2018-05-30 13:57:55 +02:00

19 lines
315 B
Bash
Executable file

#!/bin/sh
if [ $# -ne 0 ]; then
echo "$0 (no arguments"
exit 1
fi
mon=mon.$(hostname)
# Starting with monit, if available
if [ -e /etc/monit ]; then
/opt/ungleich-tools/monit-remove "$mon"
else
/etc/init.d/ceph stop "$mon"
fi
ceph mon remove "${mon}"
rm -rf /var/lib/ceph/mon/ceph-$(hostname)/