[Pkg-tcltk-commits] r1296 - in dotlrn/tags: . 2.5.0+dfsg-6+wheezy1/debian

geox-guest at alioth.debian.org geox-guest at alioth.debian.org
Wed Aug 22 13:31:24 UTC 2012


Author: geox-guest
Date: 2012-08-22 13:31:23 +0000 (Wed, 22 Aug 2012)
New Revision: 1296

Added:
   dotlrn/tags/2.5.0+dfsg-6+wheezy1/
Modified:
   dotlrn/tags/2.5.0+dfsg-6+wheezy1/debian/changelog
   dotlrn/tags/2.5.0+dfsg-6+wheezy1/debian/postrm
Log:
Fixed call to ucf on postrm. (#677060). For details about why this
 is fixed at testing-proposed-updates, please see #681016.


Modified: dotlrn/tags/2.5.0+dfsg-6+wheezy1/debian/changelog
===================================================================
--- dotlrn/tags/2.5.0+dfsg-6/debian/changelog	2012-07-28 16:03:43 UTC (rev 1295)
+++ dotlrn/tags/2.5.0+dfsg-6+wheezy1/debian/changelog	2012-08-22 13:31:23 UTC (rev 1296)
@@ -1,3 +1,10 @@
+dotlrn (2.5.0+dfsg-6+wheezy1) testing-proposed-updates; urgency=low
+
+  * Fixed call to ucf on postrm. (#677060). For details about why this
+    is fixed at testing-proposed-updates, please see #681016.
+
+ -- Hector Romojaro <hromojaro at dia.uned.es>  Wed, 22 Aug 2012 13:45:03 +0200
+
 dotlrn (2.5.0+dfsg-6) unstable; urgency=low
 
   * Updated Dutch translation. Closes: #660229 

Modified: dotlrn/tags/2.5.0+dfsg-6+wheezy1/debian/postrm
===================================================================
--- dotlrn/tags/2.5.0+dfsg-6/debian/postrm	2012-07-28 16:03:43 UTC (rev 1295)
+++ dotlrn/tags/2.5.0+dfsg-6+wheezy1/debian/postrm	2012-08-22 13:31:23 UTC (rev 1296)
@@ -17,9 +17,15 @@
 		db_version 2.0
 
 		rm -rf /usr/share/dotlrn
-		ucf --purge /etc/dotlrn/config.tcl
-		ucf --purge /etc/dotlrn/dotlrn.sh
-		rm -rf /etc/dotlrn
+        rm -rf /etc/dotlrn
+        if which ucf >/dev/null; then
+            ucf --purge /etc/dotlrn/config.tcl
+            ucf --purge /etc/dotlrn/dotlrn.sh
+        fi
+        if which ucfr >/dev/null; then
+            ucfr --purge dotlrn /etc/dotlrn/config.tcl
+            ucfr --purge dotlrn /etc/dotlrn/dotlrn.sh
+        fi
 		rm -rf /var/lib/dotlrn
 		rm -f /etc/aolserver4/conf.d/dotlrn.tcl /etc/aolserver4/conf.d/dotlrn.sh
                 rm -rf /var/log/aolserver4/dotlrn




More information about the Pkg-tcltk-commits mailing list