diff options
author | Sage Weil <sage@inktank.com> | 2013-01-27 01:11:40 -0800 |
---|---|---|
committer | Sage Weil <sage@inktank.com> | 2013-02-13 12:30:22 -0800 |
commit | 50cbd10531699db1ee62c9b7d7174bf286bc7cc8 (patch) | |
tree | dd570a6e020ffee9defbd5c0159ce3a510689609 | |
parent | af2372ca4a702da70275edd1b1357fcff51e6ae2 (diff) | |
download | ceph-50cbd10531699db1ee62c9b7d7174bf286bc7cc8.tar.gz |
debian: implement purge postrm script for ceph, ceph-mds
Signed-off-by: Sage Weil <sage@inktank.com>
-rw-r--r-- | debian/ceph-mds.postrm | 48 | ||||
-rw-r--r-- | debian/ceph.postrm | 8 |
2 files changed, 56 insertions, 0 deletions
diff --git a/debian/ceph-mds.postrm b/debian/ceph-mds.postrm new file mode 100644 index 00000000000..a400f726a1c --- /dev/null +++ b/debian/ceph-mds.postrm @@ -0,0 +1,48 @@ +#!/bin/sh +# postrm script for ceph-mds +# +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * <postrm> `remove' +# * <postrm> `purge' +# * <old-postrm> `upgrade' <new-version> +# * <new-postrm> `failed-upgrade' <old-version> +# * <new-postrm> `abort-install' +# * <new-postrm> `abort-install' <old-version> +# * <new-postrm> `abort-upgrade' <old-version> +# * <disappearer's-postrm> `disappear' <overwriter> +# <overwriter-version> +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package + + +case "$1" in + remove) + ;; + + purge) + rm -rf --one-file-system -- /var/lib/ceph/mds || true + if [ -d /var/lib/ceph/mds ]; then + find /var/lib/ceph/mds -mindepth 1 -maxdepth 1 -type d -exec umount \{\} \; + fi + rm -rf --one-file-system -- /var/lib/ceph/mds + ;; + + upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) + ;; + + *) + echo "postrm called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 diff --git a/debian/ceph.postrm b/debian/ceph.postrm index e387d5a8bec..7690fcea1b9 100644 --- a/debian/ceph.postrm +++ b/debian/ceph.postrm @@ -25,6 +25,14 @@ case "$1" in purge) rm -rf /var/log/ceph + rm -rf /etc/ceph + + # be a little careful, here: unmount anything beneath here before removing it. + rm -rf --one-file-system -- /var/lib/ceph || true + if [ -d /var/lib/ceph ]; then + find /var/lib/ceph -mindepth 1 -maxdepth 2 -type d -exec umount \{\} \; + fi + rm -rf --one-file-system -- /var/lib/ceph ;; upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) |