+xvm-prodconfig (1.1.20) unstable; urgency=low
+
+ * Run invirt-reload in the postinsts, not using triggers.
+
+ -- Evan Broder <broder@mit.edu> Wed, 27 Jan 2010 21:20:08 -0500
+
xvm-prodconfig (1.1.19) unstable; urgency=low
* OpenAIS assumes that bind addresses are /24s, so actually give the
--- /dev/null
+#!/bin/sh
+# postinst script for xvm-prodconfig
+#
+# 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
+
+
+case "$1" in
+ configure)
+ invirt-reload
+ ;;
+
+ abort-upgrade|abort-remove|abort-deconfigure)
+ ;;
+
+ *)
+ 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