X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/hvirt-config.git/blobdiff_plain/cfc60a18240b4dec85dfe507028fb1c612de8d29..82051f186101e1fd2e2bc622f56c6cb27c1ca952:/debian/hvirt-devconfig.postinst diff --git a/debian/hvirt-devconfig.postinst b/debian/hvirt-devconfig.postinst deleted file mode 100755 index b9d7c64..0000000 --- a/debian/hvirt-devconfig.postinst +++ /dev/null @@ -1,51 +0,0 @@ -#!/bin/sh -# postinst script for hvirt-devconfig -# -# 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 - - -case "$1" in - configure) - # Regen invirt config - if hash invoke-rc.d; then - invoke-rc.d invirt-base reload - else - /etc/init.d/invirt-base reload - fi - ;; - - abort-upgrade|abort-remove|abort-deconfigure) - ;; - - triggered) - invirt-reload - ;; - - *) - 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 - -