From f74e6db80b939425b3076bdd1d01624819384e32 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 21 Apr 2024 13:54:32 +0200 Subject: Adding debian version 18.2.2-1. Signed-off-by: Daniel Baumann --- debian/ceph-mgr.prerm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 debian/ceph-mgr.prerm (limited to 'debian/ceph-mgr.prerm') diff --git a/debian/ceph-mgr.prerm b/debian/ceph-mgr.prerm new file mode 100644 index 000000000..6fb7b245a --- /dev/null +++ b/debian/ceph-mgr.prerm @@ -0,0 +1,23 @@ +#!/bin/sh +# vim: set noet ts=8: + +set -e + +case "$1" in + remove) + [ -x /sbin/stop ] && stop ceph-mgr-all || : + invoke-rc.d ceph stop mgr || { + RESULT=$? + if [ $RESULT != 100 ]; then + exit $RESULT + fi + } + ;; + + *) + ;; +esac + +#DEBHELPER# + +exit 0 -- cgit v1.2.3