]> git.proxmox.com Git - ceph.git/blame - ceph/debian/ceph-mon.prerm
bump version to 12.2.10-pve1
[ceph.git] / ceph / debian / ceph-mon.prerm
CommitLineData
7c673cae
FG
1#!/bin/sh
2# vim: set noet ts=8:
3
4set -e
5
6case "$1" in
7 remove)
8 [ -x /sbin/stop ] && stop ceph-mon-all || true
9 invoke-rc.d ceph stop mon || {
10 RESULT=$?
11 if [ $RESULT != 100 ]; then
12 exit $RESULT
13 fi
14 }
15 ;;
16
17 *)
18 ;;
19esac
20
21#DEBHELPER#
22
23exit 0