[Pkg-voip-commits] r5018 - in /gnugk/trunk/debian: changelog postinst

kilian at alioth.debian.org kilian at alioth.debian.org
Tue Dec 4 12:04:16 UTC 2007


Author: kilian
Date: Tue Dec  4 12:04:15 2007
New Revision: 5018

URL: http://svn.debian.org/wsvn/pkg-voip/?sc=1&rev=5018
Log:
* Fix postinst - to complete move from preinst we need to switch from
  "install|upgrade" to "configure" as argument. (Closes: #454259)

Modified:
    gnugk/trunk/debian/changelog
    gnugk/trunk/debian/postinst

Modified: gnugk/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-voip/gnugk/trunk/debian/changelog?rev=5018&op=diff
==============================================================================
--- gnugk/trunk/debian/changelog (original)
+++ gnugk/trunk/debian/changelog Tue Dec  4 12:04:15 2007
@@ -1,3 +1,10 @@
+gnugk (2:2.2.6-7) UNRELEASED; urgency=low
+
+  * Fix postinst - to complete move from preinst we need to switch from
+    "install|upgrade" to "configure" as argument. (Closes: #454259)
+
+ -- Kilian Krause <kilian at debian.org>  Tue,  4 Dec 2007 13:03:54 +0100
+
 gnugk (2:2.2.6-6) unstable; urgency=low
 
   * Extremadura release ;-)

Modified: gnugk/trunk/debian/postinst
URL: http://svn.debian.org/wsvn/pkg-voip/gnugk/trunk/debian/postinst?rev=5018&op=diff
==============================================================================
--- gnugk/trunk/debian/postinst (original)
+++ gnugk/trunk/debian/postinst Tue Dec  4 12:04:15 2007
@@ -5,18 +5,8 @@
 
 set -e
 
-# summary of how this script can be called:
-#        * <new-preinst> `install'
-#        * <new-preinst> `install' <old-version>
-#        * <new-preinst> `upgrade' <old-version>
-#        * <old-preinst> `abort-upgrade' <new-version>
-#
-# for details, see http://www.debian.org/doc/debian-policy/ or
-# the debian-policy package
-
-
 case "$1" in
-    install|upgrade)
+    configure)
 #        if [ "$1" = "upgrade" ]
 #        then
 #            start-stop-daemon --stop --quiet --oknodo  \
@@ -33,7 +23,7 @@
 
     ;;
 
-    abort-upgrade|configure)
+    abort-upgrade|abort-remove|abort-deconfigure)
     ;;
 
     *)




More information about the Pkg-voip-commits mailing list