[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

X Strike Force X.Org X11 SVN commit: r810 - trunk/debian



Author: dnusinow
Date: 2005-10-31 20:28:01 -0500 (Mon, 31 Oct 2005)
New Revision: 810

Modified:
   trunk/debian/changelog
   trunk/debian/xserver-xorg.postrm.in
Log:
* Only try and remove the xserver-xorg init script if we're actually
  xserver-xorg, not xserver-xorg-dbg. Thanks Steve Langasek and Ryan Murray.


Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog	2005-11-01 01:05:37 UTC (rev 809)
+++ trunk/debian/changelog	2005-11-01 01:28:01 UTC (rev 810)
@@ -1,8 +1,9 @@
 xorg-x11 (6.8.2.dfsg.1-10+SVN) unstable; urgency=low
 
-  * 
+  * Only try and remove the xserver-xorg init script if we're actually
+    xserver-xorg, not xserver-xorg-dbg. Thanks Steve Langasek and Ryan Murray.
 
- -- David Nusinow <dnusinow@debian.org>  Sun, 30 Oct 2005 20:11:23 -0500
+ -- David Nusinow <dnusinow@debian.org>  Mon, 31 Oct 2005 20:26:43 -0500
 
 xorg-x11 (6.8.2.dfsg.1-10) unstable; urgency=low
 

Modified: trunk/debian/xserver-xorg.postrm.in
===================================================================
--- trunk/debian/xserver-xorg.postrm.in	2005-11-01 01:05:37 UTC (rev 809)
+++ trunk/debian/xserver-xorg.postrm.in	2005-11-01 01:28:01 UTC (rev 810)
@@ -101,7 +101,9 @@
     fi
   fi
 
-  update-rc.d xserver-xorg remove
+  if [ "$THIS_PACKAGE" = "xserver-xorg" ]; then
+    update-rc.d xserver-xorg remove
+  fi
 
   for DIR in "$CONFIG_DIR" "$CONFIG_AUX_DIR"; do
       rmdir "$DIR" 2> /dev/null || true



Reply to: