[d-i-commits] r32039 - trunk/packages/debian-installer-utils/debian

Joey Hess joeyh at costa.debian.org
Mon Nov 14 15:49:20 UTC 2005


Author: joeyh
Date: 2005-11-14 15:49:18 +0000 (Mon, 14 Nov 2005)
New Revision: 32039

Modified:
   trunk/packages/debian-installer-utils/debian/changelog
   trunk/packages/debian-installer-utils/debian/di-utils-shell.postinst
Log:
* Ignore shell return code in postinst script since it can exit nonzero
  in several normal uses.

Modified: trunk/packages/debian-installer-utils/debian/changelog
===================================================================
--- trunk/packages/debian-installer-utils/debian/changelog	2005-11-14 15:47:56 UTC (rev 32038)
+++ trunk/packages/debian-installer-utils/debian/changelog	2005-11-14 15:49:18 UTC (rev 32039)
@@ -10,8 +10,12 @@
   * Also mount /target/sys in apt-install to support installation of 2.6.14
     and higher kernels using yaird/initramfs-tools.
 
- -- Frans Pop <fjp at debian.org>  Mon, 14 Nov 2005 02:12:49 +0100
+  [ Joey Hess ]
+  * Ignore shell return code in postinst script since it can exit nonzero
+    in several normal uses.
 
+ -- Joey Hess <joeyh at debian.org>  Mon, 14 Nov 2005 10:48:51 -0500
+
 debian-installer-utils (1.16) unstable; urgency=low
 
   [ Colin Watson ]

Modified: trunk/packages/debian-installer-utils/debian/di-utils-shell.postinst
===================================================================
--- trunk/packages/debian-installer-utils/debian/di-utils-shell.postinst	2005-11-14 15:47:56 UTC (rev 32038)
+++ trunk/packages/debian-installer-utils/debian/di-utils-shell.postinst	2005-11-14 15:49:18 UTC (rev 32039)
@@ -12,4 +12,4 @@
 
 cd /
 
-env -i PATH="$PATH" TERM="$TERM" /bin/sh <&$OLD_STDIN >&$OLD_STDOUT 2>&$OLD_STDERR
+env -i PATH="$PATH" TERM="$TERM" /bin/sh <&$OLD_STDIN >&$OLD_STDOUT 2>&$OLD_STDERR || true




More information about the d-i-commits mailing list