2018-05-30 11:57:04 +00:00
|
|
|
#!/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
|
|
|
|
|
2018-05-30 12:06:51 +00:00
|
|
|
ceph mon remove "$(hostname)"
|
2018-05-30 11:57:55 +00:00
|
|
|
|
|
|
|
rm -rf /var/lib/ceph/mon/ceph-$(hostname)/
|