From: Evan Broder Date: Thu, 6 Nov 2008 23:00:19 +0000 (-0500) Subject: Punt invirt-cluster-config's postinst script - it's causing more X-Git-Tag: 0.0.4~1 X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-cluster-config.git/commitdiff_plain/834512b2dead133b025af525a36c1d890083dcc0?ds=sidebyside Punt invirt-cluster-config's postinst script - it's causing more trouble than convenience svn path=/trunk/packages/invirt-cluster-config/; revision=1538 --- diff --git a/debian/changelog b/debian/changelog index e559e4c..f238f46 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 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 index 2f43abb..0000000 --- a/debian/invirt-cluster-config.postinst +++ /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: -# * `configure' -# * `abort-upgrade' -# * `abort-remove' `in-favour' -# -# * `abort-remove' -# * `abort-deconfigure' `in-favour' -# `removing' -# -# 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 -