invirt-vnc-client (0.0.7) unstable; urgency=low
* Don't alter the original VNC JAR - make a copy instead
+ * Punt the postinst - it's not necessary, because the init script will
+ get run
- -- Evan Broder <broder@mit.edu> Sun, 09 Nov 2008 01:07:48 -0500
+ -- Evan Broder <broder@mit.edu> Sun, 09 Nov 2008 01:10:07 -0500
invirt-vnc-client (0.0.6) unstable; urgency=low
+++ /dev/null
-#!/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
-
-
-case "$1" in
- configure)
- invirt-update-vnc-cert || true
- ;;
-
- 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
-
-