[SCM] debian-live/live-helper branch, master, updated. 1.0_a37-2-5-gcd4bc30

Daniel Baumann daniel at debian.org
Wed Nov 21 20:05:49 UTC 2007


The branch, master has been updated
       via  cd4bc3078fd3049bb02e9bfe91a853cd4feb906d (commit)
      from  1be409ac5f9faa59f6e5578d1347889e8046f3a7 (commit)


- Shortlog ------------------------------------------------------------
cd4bc30 Don't fail silently when extern executables are configured but not present.

Summary of changes:
 functions/defaults.sh |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)
-----------------------------------------------------------------------
Details of changes:

commit cd4bc3078fd3049bb02e9bfe91a853cd4feb906d
Author: Daniel Baumann <daniel at debian.org>
Date:   Wed Nov 21 21:05:32 2007 +0100

    Don't fail silently when extern executables are configured but not present.

diff --git a/functions/defaults.sh b/functions/defaults.sh
index 0022a3c..0d89f4c 100755
--- a/functions/defaults.sh
+++ b/functions/defaults.sh
@@ -79,7 +79,7 @@ Set_defaults ()
 	LH_APT_SECURE="${LH_APT_SECURE:-enabled}"
 
 	# Setting bootstrap program
-	if [ -z "${LH_BOOTSTRAP}" ] || [ ! -x "$(which ${LH_BOOTSTRAP})" ]
+	if [ -z "${LH_BOOTSTRAP}" ]
 	then
 		if [ -x "/usr/sbin/debootstrap" ]
 		then
@@ -139,7 +139,7 @@ Set_defaults ()
 	fi
 
 	# Setting fdisk
-	if [ -z "${LH_FDISK}" ] || [ ! -x "${LH_FDISK}" ]
+	if [ -z "${LH_FDISK}" ]
 	then
 		# Workaround for gnu-fdisk divertion
 		# (gnu-fdisk is buggy, #445304).
@@ -155,7 +155,7 @@ Set_defaults ()
 	fi
 
 	# Setting losetup
-	if [ -z "${LH_LOSETUP}" ] || [ ! -x "${LH_LOSETUP}" ]
+	if [ -z "${LH_LOSETUP}" ]
 	then
 		# Workaround for loop-aes-utils divertion
 		# (loop-aes-utils' losetup lacks features).

-- 
debian-live/live-helper



More information about the debian-live-changes mailing list