Punt invirt-cluster-config's postinst script - it's causing more
authorEvan Broder <broder@mit.edu>
Thu, 6 Nov 2008 23:00:19 +0000 (18:00 -0500)
committerEvan Broder <broder@mit.edu>
Thu, 6 Nov 2008 23:00:19 +0000 (18:00 -0500)
trouble than convenience

svn path=/trunk/packages/invirt-cluster-config/; revision=1538

debian/changelog
debian/invirt-cluster-config.postinst [deleted file]

index e559e4c..f238f46 100644 (file)
@@ -1,3 +1,9 @@
+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
diff --git a/debian/invirt-cluster-config.postinst b/debian/invirt-cluster-config.postinst
deleted file mode 100644 (file)
index 2f43abb..0000000
+++ /dev/null
@@ -1,42 +0,0 @@
-#!/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
-