Punt the invirt-vnc-client postinst - it's not needed 0.0.7
authorEvan Broder <broder@mit.edu>
Mon, 10 Nov 2008 08:58:07 +0000 (03:58 -0500)
committerEvan Broder <broder@mit.edu>
Mon, 10 Nov 2008 08:58:07 +0000 (03:58 -0500)
svn path=/trunk/packages/invirt-vnc-client/; revision=1589

debian/changelog
debian/invirt-vnc-client.postinst [deleted file]

index 1aa04b8..034e97b 100644 (file)
@@ -1,8 +1,10 @@
 invirt-vnc-client (0.0.7) unstable; urgency=low
 
   * Don't alter the original VNC JAR - make a copy instead
 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
 
 
 invirt-vnc-client (0.0.6) unstable; urgency=low
 
diff --git a/debian/invirt-vnc-client.postinst b/debian/invirt-vnc-client.postinst
deleted file mode 100644 (file)
index 6fede0c..0000000
+++ /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:
-#        * <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
-
-