[DebianGIS-dev] r2624 - packages/postgis/trunk/debian

frankie at alioth.debian.org frankie at alioth.debian.org
Fri Dec 11 12:11:57 UTC 2009


Author: frankie
Date: 2009-12-11 12:11:57 +0000 (Fri, 11 Dec 2009)
New Revision: 2624

Modified:
   packages/postgis/trunk/debian/changelog
   packages/postgis/trunk/debian/postgis-generic.postrm.in
Log:
Fixing #560409


Modified: packages/postgis/trunk/debian/changelog
===================================================================
--- packages/postgis/trunk/debian/changelog	2009-12-10 17:13:52 UTC (rev 2623)
+++ packages/postgis/trunk/debian/changelog	2009-12-11 12:11:57 UTC (rev 2624)
@@ -6,8 +6,10 @@
   * Added postgis_comments.sql to contrib/ SQL templates.
   * Dropping 8.3 support, no more supported for squeeze.
     (closes: #559587)
+  * Do not stop on error in postrm if the target dir does not exist.
+    (closes: #560409)
 
- -- Francesco Paolo Lovergine <frankie at debian.org>  Thu, 10 Dec 2009 18:07:13 +0100
+ -- Francesco Paolo Lovergine <frankie at debian.org>  Fri, 11 Dec 2009 13:10:34 +0100
 
 postgis (1.4.0-1) experimental; urgency=low
 

Modified: packages/postgis/trunk/debian/postgis-generic.postrm.in
===================================================================
--- packages/postgis/trunk/debian/postgis-generic.postrm.in	2009-12-10 17:13:52 UTC (rev 2623)
+++ packages/postgis/trunk/debian/postgis-generic.postrm.in	2009-12-11 12:11:57 UTC (rev 2624)
@@ -6,7 +6,7 @@
 if [ "$1" = "purge" ]; then
 	 for version in @POSTGRES_VERSIONS@ 
 	 do 
-	     find /usr/lib/postgresql/$version/lib -type f -name "postgis- at SOVERSION@.so" -delete
+	     find /usr/lib/postgresql/$version/lib -type f -name "postgis- at SOVERSION@.so" -delete || true
 	 done
 fi
 




More information about the Pkg-grass-devel mailing list