+invirt-cluster-config (0.0.3) unstable; urgency=low
+
+ * Punt the postinst - it causes more trouble than anything else
+
+ -- Evan Broder <broder@mit.edu> Thu, 06 Nov 2008 17:58:22 -0500
+
invirt-cluster-config (0.0.2) unstable; urgency=low
* Be sure to start clvm as well as cman
+++ /dev/null
-#!/bin/sh
-# postinst script for #PACKAGE#
-#
-# 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
-
-# dh_installdeb will replace this with shell code automatically
-# generated by other debhelper scripts.
-
-#DEBHELPER#
-
-case "$1" in
- configure)
- invoke-rc.d clvm stop
- invoke-rc.d cman restart
- invoke-rc.d clvm start
- ;;
-
- abort-upgrade|abort-remove|abort-deconfigure)
- ;;
-
- *)
- echo "postinst called with unknown argument \`$1'" >&2
- exit 1
- ;;
-esac
-
-exit 0
-