X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-cluster-config.git/blobdiff_plain/9d1dcefa8207897bc949c116b9e4ddbac797461a..834512b2dead133b025af525a36c1d890083dcc0:/debian/invirt-cluster-config.postinst diff --git a/debian/invirt-cluster-config.postinst b/debian/invirt-cluster-config.postinst deleted file mode 100644 index 4939055..0000000 --- a/debian/invirt-cluster-config.postinst +++ /dev/null @@ -1,40 +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 cman restart - ;; - - abort-upgrade|abort-remove|abort-deconfigure) - ;; - - *) - echo "postinst called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -exit 0 -