X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fceph%2Fdebian%2Fceph-common.postrm;fp=src%2Fceph%2Fdebian%2Fceph-common.postrm;h=0000000000000000000000000000000000000000;hb=7da45d65be36d36b880cc55c5036e96c24b53f00;hp=b62185483cb6ea1f2a5f5462316f4ea3b8bdc852;hpb=691462d09d0987b47e112d6ee8740375df3c51b2;p=stor4nfv.git diff --git a/src/ceph/debian/ceph-common.postrm b/src/ceph/debian/ceph-common.postrm deleted file mode 100644 index b621854..0000000 --- a/src/ceph/debian/ceph-common.postrm +++ /dev/null @@ -1,47 +0,0 @@ -#!/bin/sh -# postrm script for ceph-common -# -# see: dh_installdeb(1) - -set -e - -# summary of how this script can be called: -# * `remove' -# * `purge' -# * `upgrade' -# * `failed-upgrade' -# * `abort-install' -# * `abort-install' -# * `abort-upgrade' -# * `disappear' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - - -case "$1" in - remove) - ;; - - purge) - rm -rf /var/log/ceph - rm -rf /etc/ceph - ;; - - 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 - -