]> git.proxmox.com Git - ceph.git/blame - ceph/debian/ceph-mgr.prerm
bump version to 12.2.0-pve1
[ceph.git] / ceph / debian / ceph-mgr.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-mgr-all || :
9 invoke-rc.d ceph stop mgr || {
10 RESULT=$?
11 if [ $RESULT != 100 ]; then
12 exit $RESULT
13 fi
14 }
15 ;;
16
17 *)
18 ;;
19esac
20
21#DEBHELPER#
22
23exit 0