diff options
Diffstat (limited to 'functions')
-rwxr-xr-x | functions/common.sh | 2 | ||||
-rwxr-xr-x | functions/defaults.sh | 16 | ||||
-rwxr-xr-x | functions/help.sh | 2 |
3 files changed, 10 insertions, 10 deletions
diff --git a/functions/common.sh b/functions/common.sh index e56b80fc7..efd7922c6 100755 --- a/functions/common.sh +++ b/functions/common.sh @@ -10,4 +10,4 @@ set -e PROGRAM="`basename ${0}`" -VERSION="1.0~a24" +VERSION="1.0~a25" diff --git a/functions/defaults.sh b/functions/defaults.sh index 29633de0c..e54874435 100755 --- a/functions/defaults.sh +++ b/functions/defaults.sh @@ -102,12 +102,12 @@ Set_defaults () then case "${LH_MODE}" in debian|debian-edu) - if [ -x "/usr/bin/cdebootstrap" ] - then - LH_BOOTSTRAP="cdebootstrap" - elif [ -x "/usr/sbin/debootstrap" ] + if [ -x "/usr/sbin/debootstrap" ] then LH_BOOTSTRAP="debootstrap" + elif [ -x "/usr/bin/cdebootstrap" ] + then + LH_BOOTSTRAP="cdebootstrap" else echo "E: Can't process file /usr/bin/cdebootstrap or /usr/sbin/debootstrap (FIXME)" exit 1 @@ -115,12 +115,12 @@ Set_defaults () ;; ubuntu) - if [ -x "/usr/bin/cdebootstrap" ] && [ -d /usr/share/cdebootstrap/generic-ubuntu ] - then - LH_BOOTSTRAP="cdebootstrap" - elif [ -x "/usr/sbin/debootstrap" ] && [ -f /usr/lib/debootstrap/scripts/gutsy ] + if [ -x "/usr/sbin/debootstrap" ] && [ -f /usr/lib/debootstrap/scripts/gutsy ] then LH_BOOTSTRAP="debootstrap" + elif [ -x "/usr/bin/cdebootstrap" ] && [ -d /usr/share/cdebootstrap/generic-ubuntu ] + then + LH_BOOTSTRAP="cdebootstrap" else echo "E: Your version of debootstrap or cdebootstrap is outdated and does not support ubuntu." exit 1 diff --git a/functions/help.sh b/functions/help.sh index 6427639e7..0748ab201 100755 --- a/functions/help.sh +++ b/functions/help.sh @@ -18,7 +18,7 @@ Help () if [ -n "${USAGE}" ] then - echo " ${USAGE}" + echo -e "${USAGE}" echo fi |