summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLaszlo Boszormenyi <gcs@debian.hu>2011-05-29 21:19:52 +0200
committerSage Weil <sage@newdream.net>2011-06-03 00:14:54 +0200
commit6fd694c3942a12a3730a30d059b51b37d3f7536f (patch)
tree043f5122fc2ad68c3026410c72183d9ec070fd5d
parentmds: journal parents of srci when srcdn is remote (diff)
downloadceph-6fd694c3942a12a3730a30d059b51b37d3f7536f.tar.xz
ceph-6fd694c3942a12a3730a30d059b51b37d3f7536f.zip
Remove unneeded libcrush1 files
-rw-r--r--debian/libcrush1.postinst41
-rw-r--r--debian/libcrush1.postrm43
2 files changed, 0 insertions, 84 deletions
diff --git a/debian/libcrush1.postinst b/debian/libcrush1.postinst
deleted file mode 100644
index df6b9fcb3db..00000000000
--- a/debian/libcrush1.postinst
+++ /dev/null
@@ -1,41 +0,0 @@
-#!/bin/sh
-#
-# see: dh_installdeb(1)
-
-set -e
-
-# summary of how this script can be called:
-# * <postinst> `configure' <most-recently-configured-version>
-# * <old-postinst> `abort-upgrade' <new version>
-# * <conflictor's-postinst> `abort-remove' `in-favour' <package>
-# <new-version>
-# * <postinst> `abort-remove'
-# * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
-# <failed-install-package> <version> `removing'
-# <conflicting-package> <version>
-# for details, see http://www.debian.org/doc/debian-policy/ or
-# the debian-policy package
-
-
-case "$1" in
- configure)
- ldconfig
- ;;
-
- abort-upgrade|abort-remove|abort-deconfigure)
- ;;
-
- *)
- echo "postinst 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/libcrush1.postrm b/debian/libcrush1.postrm
deleted file mode 100644
index 598f48b6157..00000000000
--- a/debian/libcrush1.postrm
+++ /dev/null
@@ -1,43 +0,0 @@
-#!/bin/sh
-# postrm script for ceph
-#
-# 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)
- ldconfig
- ;;
-
- purge|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
-
-