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