diff options
Diffstat (limited to 'debian/ceph-mon.prerm')
-rw-r--r-- | debian/ceph-mon.prerm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/debian/ceph-mon.prerm b/debian/ceph-mon.prerm new file mode 100644 index 000000000..5f64058a5 --- /dev/null +++ b/debian/ceph-mon.prerm @@ -0,0 +1,23 @@ +#!/bin/sh +# vim: set noet ts=8: + +set -e + +case "$1" in + remove) + [ -x /sbin/stop ] && stop ceph-mon-all || true + invoke-rc.d ceph stop mon || { + RESULT=$? + if [ $RESULT != 100 ]; then + exit $RESULT + fi + } + ;; + + *) + ;; +esac + +#DEBHELPER# + +exit 0 |