[Pkg-voip-commits] r4375 - op-panel/trunk/debian

santiago at alioth.debian.org santiago at alioth.debian.org
Sun Sep 2 01:06:33 UTC 2007


Author: santiago
Date: 2007-09-02 01:06:32 +0000 (Sun, 02 Sep 2007)
New Revision: 4375

Modified:
   op-panel/trunk/debian/changelog
   op-panel/trunk/debian/prerm
Log:
 * prerm: remove alternatives only if they exist (Closes: #434598)



Modified: op-panel/trunk/debian/changelog
===================================================================
--- op-panel/trunk/debian/changelog	2007-09-01 17:30:02 UTC (rev 4374)
+++ op-panel/trunk/debian/changelog	2007-09-02 01:06:32 UTC (rev 4375)
@@ -1,3 +1,9 @@
+op-panel (0.27.dfsg-2) unstable; urgency=low
+
+  * prerm: remove alternatives only if they exist (Closes: #434598)
+
+ -- Santiago Ruano Rincón <santiago at debian.org>  Sat, 01 Sep 2007 19:53:05 -0500
+
 op-panel (0.27.dfsg-1) unstable; urgency=low
 
   * New upstream version: 0.27

Modified: op-panel/trunk/debian/prerm
===================================================================
--- op-panel/trunk/debian/prerm	2007-09-01 17:30:02 UTC (rev 4374)
+++ op-panel/trunk/debian/prerm	2007-09-02 01:06:32 UTC (rev 4375)
@@ -21,7 +21,9 @@
     remove|upgrade|deconfigure)
 	
 	# remove this alternative configuration
-	update-alternatives --remove-all op-panel
+	if update-alternatives --list op-panel ; then
+		update-alternatives --remove-all op-panel
+	fi
 	
         ;;
     failed-upgrade)




More information about the Pkg-voip-commits mailing list