summaryrefslogtreecommitdiff
path: root/debian/ceph-mds.prerm
blob: e4cd62c985f9d157bd6a55075f0fc4620482a848 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh
# vim: set noet ts=8:

set -e

invoke-rc.d ceph-mds-all stop || {
	RESULT=$?
	# Ignore if ceph-all upstart config does not
	# exist or upstart is not in use
	if [ $RESULT != 100 ]; then
		exit $RESULT
	fi
}

#DEBHELPER#

exit 0