[Debian-live-changes] r1939 - dists/trunk/live-helper/helpers

daniel at alioth.debian.org daniel at alioth.debian.org
Sun Jun 3 06:41:30 UTC 2007


Author: daniel
Date: 2007-06-03 06:41:30 +0000 (Sun, 03 Jun 2007)
New Revision: 1939

Modified:
   dists/trunk/live-helper/helpers/lh_binary
   dists/trunk/live-helper/helpers/lh_binary_chroot
   dists/trunk/live-helper/helpers/lh_binary_debian-installer
   dists/trunk/live-helper/helpers/lh_binary_encryption
   dists/trunk/live-helper/helpers/lh_binary_grub
   dists/trunk/live-helper/helpers/lh_binary_hdd
   dists/trunk/live-helper/helpers/lh_binary_includes
   dists/trunk/live-helper/helpers/lh_binary_iso
   dists/trunk/live-helper/helpers/lh_binary_linux-image
   dists/trunk/live-helper/helpers/lh_binary_local-includes
   dists/trunk/live-helper/helpers/lh_binary_manifest
   dists/trunk/live-helper/helpers/lh_binary_md5sum
   dists/trunk/live-helper/helpers/lh_binary_memtest
   dists/trunk/live-helper/helpers/lh_binary_net
   dists/trunk/live-helper/helpers/lh_binary_rootfs
   dists/trunk/live-helper/helpers/lh_binary_syslinux
   dists/trunk/live-helper/helpers/lh_binary_usb-hdd
   dists/trunk/live-helper/helpers/lh_binary_yaboot
   dists/trunk/live-helper/helpers/lh_bootstrap
   dists/trunk/live-helper/helpers/lh_bootstrap_cdebootstrap
   dists/trunk/live-helper/helpers/lh_bootstrap_debootstrap
   dists/trunk/live-helper/helpers/lh_build
   dists/trunk/live-helper/helpers/lh_chroot
   dists/trunk/live-helper/helpers/lh_chroot_apt
   dists/trunk/live-helper/helpers/lh_chroot_debianchroot
   dists/trunk/live-helper/helpers/lh_chroot_hacks
   dists/trunk/live-helper/helpers/lh_chroot_hooks
   dists/trunk/live-helper/helpers/lh_chroot_hosts
   dists/trunk/live-helper/helpers/lh_chroot_interactive
   dists/trunk/live-helper/helpers/lh_chroot_linux-image
   dists/trunk/live-helper/helpers/lh_chroot_local-hooks
   dists/trunk/live-helper/helpers/lh_chroot_local-includes
   dists/trunk/live-helper/helpers/lh_chroot_local-packages
   dists/trunk/live-helper/helpers/lh_chroot_local-packageslists
   dists/trunk/live-helper/helpers/lh_chroot_localization
   dists/trunk/live-helper/helpers/lh_chroot_packages
   dists/trunk/live-helper/helpers/lh_chroot_packageslists
   dists/trunk/live-helper/helpers/lh_chroot_preseed
   dists/trunk/live-helper/helpers/lh_chroot_proc
   dists/trunk/live-helper/helpers/lh_chroot_resolv
   dists/trunk/live-helper/helpers/lh_chroot_sources
   dists/trunk/live-helper/helpers/lh_chroot_symlinks
   dists/trunk/live-helper/helpers/lh_chroot_sysfs
   dists/trunk/live-helper/helpers/lh_chroot_sysvinit
   dists/trunk/live-helper/helpers/lh_chroot_sysvrc
   dists/trunk/live-helper/helpers/lh_chroot_tasks
   dists/trunk/live-helper/helpers/lh_clean
   dists/trunk/live-helper/helpers/lh_config
   dists/trunk/live-helper/helpers/lh_losetup
   dists/trunk/live-helper/helpers/lh_source
   dists/trunk/live-helper/helpers/lh_source_debian
   dists/trunk/live-helper/helpers/lh_source_debian-live
   dists/trunk/live-helper/helpers/lh_source_generic
   dists/trunk/live-helper/helpers/lh_source_hdd
   dists/trunk/live-helper/helpers/lh_source_iso
   dists/trunk/live-helper/helpers/lh_source_md5sum
   dists/trunk/live-helper/helpers/lh_source_net
   dists/trunk/live-helper/helpers/lh_source_usb-hdd
   dists/trunk/live-helper/helpers/lh_testroot
   dists/trunk/live-helper/helpers/make-live
Log:


Modified: dists/trunk/live-helper/helpers/lh_binary
===================================================================
--- dists/trunk/live-helper/helpers/lh_binary	2007-06-03 06:26:57 UTC (rev 1938)
+++ dists/trunk/live-helper/helpers/lh_binary	2007-06-03 06:41:30 UTC (rev 1939)
@@ -10,9 +10,11 @@
 set -e
 
 # Including common functions
-for FUNCTION in ${LH_BASE-:/usr/share/live-helper}/functions/*.sh
+LH_BASE="${LH_BASE:/usr/share/live-helper}"
+
+for FUNCTION in "${LH_BASE}"/functions/*.sh
 do
-	. ${FUNCTION}
+	. "${FUNCTION}"
 done
 
 # Setting static variables

Modified: dists/trunk/live-helper/helpers/lh_binary_chroot
===================================================================
--- dists/trunk/live-helper/helpers/lh_binary_chroot	2007-06-03 06:26:57 UTC (rev 1938)
+++ dists/trunk/live-helper/helpers/lh_binary_chroot	2007-06-03 06:41:30 UTC (rev 1939)
@@ -10,9 +10,11 @@
 set -e
 
 # Including common functions
-for FUNCTION in ${LH_BASE-:/usr/share/live-helper}/functions/*.sh
+LH_BASE="${LH_BASE:/usr/share/live-helper}"
+
+for FUNCTION in "${LH_BASE}"/functions/*.sh
 do
-	. ${FUNCTION}
+	. "${FUNCTION}"
 done
 
 # Setting static variables

Modified: dists/trunk/live-helper/helpers/lh_binary_debian-installer
===================================================================
--- dists/trunk/live-helper/helpers/lh_binary_debian-installer	2007-06-03 06:26:57 UTC (rev 1938)
+++ dists/trunk/live-helper/helpers/lh_binary_debian-installer	2007-06-03 06:41:30 UTC (rev 1939)
@@ -10,9 +10,11 @@
 set -e
 
 # Including common functions
-for FUNCTION in ${LH_BASE-:/usr/share/live-helper}/functions/*.sh
+LH_BASE="${LH_BASE:/usr/share/live-helper}"
+
+for FUNCTION in "${LH_BASE}"/functions/*.sh
 do
-	. ${FUNCTION}
+	. "${FUNCTION}"
 done
 
 # Setting static variables

Modified: dists/trunk/live-helper/helpers/lh_binary_encryption
===================================================================
--- dists/trunk/live-helper/helpers/lh_binary_encryption	2007-06-03 06:26:57 UTC (rev 1938)
+++ dists/trunk/live-helper/helpers/lh_binary_encryption	2007-06-03 06:41:30 UTC (rev 1939)
@@ -10,9 +10,11 @@
 set -e
 
 # Including common functions
-for FUNCTION in ${LH_BASE-:/usr/share/live-helper}/functions/*.sh
+LH_BASE="${LH_BASE:/usr/share/live-helper}"
+
+for FUNCTION in "${LH_BASE}"/functions/*.sh
 do
-	. ${FUNCTION}
+	. "${FUNCTION}"
 done
 
 # Setting static variables

Modified: dists/trunk/live-helper/helpers/lh_binary_grub
===================================================================
--- dists/trunk/live-helper/helpers/lh_binary_grub	2007-06-03 06:26:57 UTC (rev 1938)
+++ dists/trunk/live-helper/helpers/lh_binary_grub	2007-06-03 06:41:30 UTC (rev 1939)
@@ -10,9 +10,11 @@
 set -e
 
 # Including common functions
-for FUNCTION in ${LH_BASE-:/usr/share/live-helper}/functions/*.sh
+LH_BASE="${LH_BASE:/usr/share/live-helper}"
+
+for FUNCTION in "${LH_BASE}"/functions/*.sh
 do
-	. ${FUNCTION}
+	. "${FUNCTION}"
 done
 
 # Setting static variables

Modified: dists/trunk/live-helper/helpers/lh_binary_hdd
===================================================================
--- dists/trunk/live-helper/helpers/lh_binary_hdd	2007-06-03 06:26:57 UTC (rev 1938)
+++ dists/trunk/live-helper/helpers/lh_binary_hdd	2007-06-03 06:41:30 UTC (rev 1939)
@@ -10,9 +10,11 @@
 set -e
 
 # Including common functions
-for FUNCTION in ${LH_BASE-:/usr/share/live-helper}/functions/*.sh
+LH_BASE="${LH_BASE:/usr/share/live-helper}"
+
+for FUNCTION in "${LH_BASE}"/functions/*.sh
 do
-	. ${FUNCTION}
+	. "${FUNCTION}"
 done
 
 # Setting static variables

Modified: dists/trunk/live-helper/helpers/lh_binary_includes
===================================================================
--- dists/trunk/live-helper/helpers/lh_binary_includes	2007-06-03 06:26:57 UTC (rev 1938)
+++ dists/trunk/live-helper/helpers/lh_binary_includes	2007-06-03 06:41:30 UTC (rev 1939)
@@ -10,9 +10,11 @@
 set -e
 
 # Including common functions
-for FUNCTION in ${LH_BASE-:/usr/share/live-helper}/functions/*.sh
+LH_BASE="${LH_BASE:/usr/share/live-helper}"
+
+for FUNCTION in "${LH_BASE}"/functions/*.sh
 do
-	. ${FUNCTION}
+	. "${FUNCTION}"
 done
 
 # Setting static variables

Modified: dists/trunk/live-helper/helpers/lh_binary_iso
===================================================================
--- dists/trunk/live-helper/helpers/lh_binary_iso	2007-06-03 06:26:57 UTC (rev 1938)
+++ dists/trunk/live-helper/helpers/lh_binary_iso	2007-06-03 06:41:30 UTC (rev 1939)
@@ -10,9 +10,11 @@
 set -e
 
 # Including common functions
-for FUNCTION in ${LH_BASE-:/usr/share/live-helper}/functions/*.sh
+LH_BASE="${LH_BASE:/usr/share/live-helper}"
+
+for FUNCTION in "${LH_BASE}"/functions/*.sh
 do
-	. ${FUNCTION}
+	. "${FUNCTION}"
 done
 
 # Setting static variables

Modified: dists/trunk/live-helper/helpers/lh_binary_linux-image
===================================================================
--- dists/trunk/live-helper/helpers/lh_binary_linux-image	2007-06-03 06:26:57 UTC (rev 1938)
+++ dists/trunk/live-helper/helpers/lh_binary_linux-image	2007-06-03 06:41:30 UTC (rev 1939)
@@ -10,9 +10,11 @@
 set -e
 
 # Including common functions
-for FUNCTION in ${LH_BASE-:/usr/share/live-helper}/functions/*.sh
+LH_BASE="${LH_BASE:/usr/share/live-helper}"
+
+for FUNCTION in "${LH_BASE}"/functions/*.sh
 do
-	. ${FUNCTION}
+	. "${FUNCTION}"
 done
 
 # Setting static variables

Modified: dists/trunk/live-helper/helpers/lh_binary_local-includes
===================================================================
--- dists/trunk/live-helper/helpers/lh_binary_local-includes	2007-06-03 06:26:57 UTC (rev 1938)
+++ dists/trunk/live-helper/helpers/lh_binary_local-includes	2007-06-03 06:41:30 UTC (rev 1939)
@@ -10,9 +10,11 @@
 set -e
 
 # Including common functions
-for FUNCTION in ${LH_BASE-:/usr/share/live-helper}/functions/*.sh
+LH_BASE="${LH_BASE:/usr/share/live-helper}"
+
+for FUNCTION in "${LH_BASE}"/functions/*.sh
 do
-	. ${FUNCTION}
+	. "${FUNCTION}"
 done
 
 # Setting static variables

Modified: dists/trunk/live-helper/helpers/lh_binary_manifest
===================================================================
--- dists/trunk/live-helper/helpers/lh_binary_manifest	2007-06-03 06:26:57 UTC (rev 1938)
+++ dists/trunk/live-helper/helpers/lh_binary_manifest	2007-06-03 06:41:30 UTC (rev 1939)
@@ -10,9 +10,11 @@
 set -e
 
 # Including common functions
-for FUNCTION in ${LH_BASE-:/usr/share/live-helper}/functions/*.sh
+LH_BASE="${LH_BASE:/usr/share/live-helper}"
+
+for FUNCTION in "${LH_BASE}"/functions/*.sh
 do
-	. ${FUNCTION}
+	. "${FUNCTION}"
 done
 
 # Setting static variables

Modified: dists/trunk/live-helper/helpers/lh_binary_md5sum
===================================================================
--- dists/trunk/live-helper/helpers/lh_binary_md5sum	2007-06-03 06:26:57 UTC (rev 1938)
+++ dists/trunk/live-helper/helpers/lh_binary_md5sum	2007-06-03 06:41:30 UTC (rev 1939)
@@ -10,9 +10,11 @@
 set -e
 
 # Including common functions
-for FUNCTION in ${LH_BASE-:/usr/share/live-helper}/functions/*.sh
+LH_BASE="${LH_BASE:/usr/share/live-helper}"
+
+for FUNCTION in "${LH_BASE}"/functions/*.sh
 do
-	. ${FUNCTION}
+	. "${FUNCTION}"
 done
 
 # Setting static variables

Modified: dists/trunk/live-helper/helpers/lh_binary_memtest
===================================================================
--- dists/trunk/live-helper/helpers/lh_binary_memtest	2007-06-03 06:26:57 UTC (rev 1938)
+++ dists/trunk/live-helper/helpers/lh_binary_memtest	2007-06-03 06:41:30 UTC (rev 1939)
@@ -10,9 +10,11 @@
 set -e
 
 # Including common functions
-for FUNCTION in ${LH_BASE-:/usr/share/live-helper}/functions/*.sh
+LH_BASE="${LH_BASE:/usr/share/live-helper}"
+
+for FUNCTION in "${LH_BASE}"/functions/*.sh
 do
-	. ${FUNCTION}
+	. "${FUNCTION}"
 done
 
 # Setting static variables

Modified: dists/trunk/live-helper/helpers/lh_binary_net
===================================================================
--- dists/trunk/live-helper/helpers/lh_binary_net	2007-06-03 06:26:57 UTC (rev 1938)
+++ dists/trunk/live-helper/helpers/lh_binary_net	2007-06-03 06:41:30 UTC (rev 1939)
@@ -10,9 +10,11 @@
 set -e
 
 # Including common functions
-for FUNCTION in ${LH_BASE-:/usr/share/live-helper}/functions/*.sh
+LH_BASE="${LH_BASE:/usr/share/live-helper}"
+
+for FUNCTION in "${LH_BASE}"/functions/*.sh
 do
-	. ${FUNCTION}
+	. "${FUNCTION}"
 done
 
 # Setting static variables

Modified: dists/trunk/live-helper/helpers/lh_binary_rootfs
===================================================================
--- dists/trunk/live-helper/helpers/lh_binary_rootfs	2007-06-03 06:26:57 UTC (rev 1938)
+++ dists/trunk/live-helper/helpers/lh_binary_rootfs	2007-06-03 06:41:30 UTC (rev 1939)
@@ -10,9 +10,11 @@
 set -e
 
 # Including common functions
-for FUNCTION in ${LH_BASE-:/usr/share/live-helper}/functions/*.sh
+LH_BASE="${LH_BASE:/usr/share/live-helper}"
+
+for FUNCTION in "${LH_BASE}"/functions/*.sh
 do
-	. ${FUNCTION}
+	. "${FUNCTION}"
 done
 
 # Setting static variables

Modified: dists/trunk/live-helper/helpers/lh_binary_syslinux
===================================================================
--- dists/trunk/live-helper/helpers/lh_binary_syslinux	2007-06-03 06:26:57 UTC (rev 1938)
+++ dists/trunk/live-helper/helpers/lh_binary_syslinux	2007-06-03 06:41:30 UTC (rev 1939)
@@ -10,9 +10,11 @@
 set -e
 
 # Including common functions
-for FUNCTION in ${LH_BASE-:/usr/share/live-helper}/functions/*.sh
+LH_BASE="${LH_BASE:/usr/share/live-helper}"
+
+for FUNCTION in "${LH_BASE}"/functions/*.sh
 do
-	. ${FUNCTION}
+	. "${FUNCTION}"
 done
 
 # Setting static variables

Modified: dists/trunk/live-helper/helpers/lh_binary_usb-hdd
===================================================================
--- dists/trunk/live-helper/helpers/lh_binary_usb-hdd	2007-06-03 06:26:57 UTC (rev 1938)
+++ dists/trunk/live-helper/helpers/lh_binary_usb-hdd	2007-06-03 06:41:30 UTC (rev 1939)
@@ -10,9 +10,11 @@
 set -e
 
 # Including common functions
-for FUNCTION in ${LH_BASE-:/usr/share/live-helper}/functions/*.sh
+LH_BASE="${LH_BASE:/usr/share/live-helper}"
+
+for FUNCTION in "${LH_BASE}"/functions/*.sh
 do
-	. ${FUNCTION}
+	. "${FUNCTION}"
 done
 
 # Setting static variables

Modified: dists/trunk/live-helper/helpers/lh_binary_yaboot
===================================================================
--- dists/trunk/live-helper/helpers/lh_binary_yaboot	2007-06-03 06:26:57 UTC (rev 1938)
+++ dists/trunk/live-helper/helpers/lh_binary_yaboot	2007-06-03 06:41:30 UTC (rev 1939)
@@ -10,9 +10,11 @@
 set -e
 
 # Including common functions
-for FUNCTION in ${LH_BASE-:/usr/share/live-helper}/functions/*.sh
+LH_BASE="${LH_BASE:/usr/share/live-helper}"
+
+for FUNCTION in "${LH_BASE}"/functions/*.sh
 do
-	. ${FUNCTION}
+	. "${FUNCTION}"
 done
 
 # Setting static variables

Modified: dists/trunk/live-helper/helpers/lh_bootstrap
===================================================================
--- dists/trunk/live-helper/helpers/lh_bootstrap	2007-06-03 06:26:57 UTC (rev 1938)
+++ dists/trunk/live-helper/helpers/lh_bootstrap	2007-06-03 06:41:30 UTC (rev 1939)
@@ -10,7 +10,9 @@
 set -e
 
 # Including common functions
-for FUNCTION in ${LH_BASE-:/usr/share/live-helper}/functions/*.sh
+LH_BASE="${LH_BASE:/usr/share/live-helper}"
+
+for FUNCTION in "${LH_BASE}"/functions/*.sh
 do
 	. "${FUNCTION}"
 done

Modified: dists/trunk/live-helper/helpers/lh_bootstrap_cdebootstrap
===================================================================
--- dists/trunk/live-helper/helpers/lh_bootstrap_cdebootstrap	2007-06-03 06:26:57 UTC (rev 1938)
+++ dists/trunk/live-helper/helpers/lh_bootstrap_cdebootstrap	2007-06-03 06:41:30 UTC (rev 1939)
@@ -10,7 +10,9 @@
 set -e
 
 # Including common functions
-for FUNCTION in ${LH_BASE-:/usr/share/live-helper}/functions/*.sh
+LH_BASE="${LH_BASE:/usr/share/live-helper}"
+
+for FUNCTION in "${LH_BASE}"/functions/*.sh
 do
 	. "${FUNCTION}"
 done

Modified: dists/trunk/live-helper/helpers/lh_bootstrap_debootstrap
===================================================================
--- dists/trunk/live-helper/helpers/lh_bootstrap_debootstrap	2007-06-03 06:26:57 UTC (rev 1938)
+++ dists/trunk/live-helper/helpers/lh_bootstrap_debootstrap	2007-06-03 06:41:30 UTC (rev 1939)
@@ -10,9 +10,11 @@
 set -e
 
 # Including common functions
-for FUNCTION in ${LH_BASE-:/usr/share/live-helper}/functions/*.sh
+LH_BASE="${LH_BASE:/usr/share/live-helper}"
+
+for FUNCTION in "${LH_BASE}"/functions/*.sh
 do
-	. ${FUNCTION}
+	. "${FUNCTION}"
 done
 
 # Setting static variables

Modified: dists/trunk/live-helper/helpers/lh_build
===================================================================
--- dists/trunk/live-helper/helpers/lh_build	2007-06-03 06:26:57 UTC (rev 1938)
+++ dists/trunk/live-helper/helpers/lh_build	2007-06-03 06:41:30 UTC (rev 1939)
@@ -10,7 +10,9 @@
 set -e
 
 # Including common functions
-for FUNCTION in ${LH_BASE-:/usr/share/live-helper}/functions/*.sh
+LH_BASE="${LH_BASE:/usr/share/live-helper}"
+
+for FUNCTION in "${LH_BASE}"/functions/*.sh
 do
 	. "${FUNCTION}"
 done

Modified: dists/trunk/live-helper/helpers/lh_chroot
===================================================================
--- dists/trunk/live-helper/helpers/lh_chroot	2007-06-03 06:26:57 UTC (rev 1938)
+++ dists/trunk/live-helper/helpers/lh_chroot	2007-06-03 06:41:30 UTC (rev 1939)
@@ -10,9 +10,11 @@
 set -e
 
 # Including common functions
-for FUNCTION in ${LH_BASE-:/usr/share/live-helper}/functions/*.sh
+LH_BASE="${LH_BASE:/usr/share/live-helper}"
+
+for FUNCTION in "${LH_BASE}"/functions/*.sh
 do
-	. ${FUNCTION}
+	. "${FUNCTION}"
 done
 
 # Setting static variables

Modified: dists/trunk/live-helper/helpers/lh_chroot_apt
===================================================================
--- dists/trunk/live-helper/helpers/lh_chroot_apt	2007-06-03 06:26:57 UTC (rev 1938)
+++ dists/trunk/live-helper/helpers/lh_chroot_apt	2007-06-03 06:41:30 UTC (rev 1939)
@@ -10,9 +10,11 @@
 set -e
 
 # Including common functions
-for FUNCTION in ${LH_BASE-:/usr/share/live-helper}/functions/*.sh
+LH_BASE="${LH_BASE:/usr/share/live-helper}"
+
+for FUNCTION in "${LH_BASE}"/functions/*.sh
 do
-	. ${FUNCTION}
+	. "${FUNCTION}"
 done
 
 # Setting static variables

Modified: dists/trunk/live-helper/helpers/lh_chroot_debianchroot
===================================================================
--- dists/trunk/live-helper/helpers/lh_chroot_debianchroot	2007-06-03 06:26:57 UTC (rev 1938)
+++ dists/trunk/live-helper/helpers/lh_chroot_debianchroot	2007-06-03 06:41:30 UTC (rev 1939)
@@ -10,9 +10,11 @@
 set -e
 
 # Including common functions
-for FUNCTION in ${LH_BASE-:/usr/share/live-helper}/functions/*.sh
+LH_BASE="${LH_BASE:/usr/share/live-helper}"
+
+for FUNCTION in "${LH_BASE}"/functions/*.sh
 do
-	. ${FUNCTION}
+	. "${FUNCTION}"
 done
 
 # Setting static variables

Modified: dists/trunk/live-helper/helpers/lh_chroot_hacks
===================================================================
--- dists/trunk/live-helper/helpers/lh_chroot_hacks	2007-06-03 06:26:57 UTC (rev 1938)
+++ dists/trunk/live-helper/helpers/lh_chroot_hacks	2007-06-03 06:41:30 UTC (rev 1939)
@@ -10,9 +10,11 @@
 set -e
 
 # Including common functions
-for FUNCTION in ${LH_BASE-:/usr/share/live-helper}/functions/*.sh
+LH_BASE="${LH_BASE:/usr/share/live-helper}"
+
+for FUNCTION in "${LH_BASE}"/functions/*.sh
 do
-	. ${FUNCTION}
+	. "${FUNCTION}"
 done
 
 # Setting static variables

Modified: dists/trunk/live-helper/helpers/lh_chroot_hooks
===================================================================
--- dists/trunk/live-helper/helpers/lh_chroot_hooks	2007-06-03 06:26:57 UTC (rev 1938)
+++ dists/trunk/live-helper/helpers/lh_chroot_hooks	2007-06-03 06:41:30 UTC (rev 1939)
@@ -10,9 +10,11 @@
 set -e
 
 # Including common functions
-for FUNCTION in ${LH_BASE-:/usr/share/live-helper}/functions/*.sh
+LH_BASE="${LH_BASE:/usr/share/live-helper}"
+
+for FUNCTION in "${LH_BASE}"/functions/*.sh
 do
-	. ${FUNCTION}
+	. "${FUNCTION}"
 done
 
 # Setting static variables

Modified: dists/trunk/live-helper/helpers/lh_chroot_hosts
===================================================================
--- dists/trunk/live-helper/helpers/lh_chroot_hosts	2007-06-03 06:26:57 UTC (rev 1938)
+++ dists/trunk/live-helper/helpers/lh_chroot_hosts	2007-06-03 06:41:30 UTC (rev 1939)
@@ -10,9 +10,11 @@
 set -e
 
 # Including common functions
-for FUNCTION in ${LH_BASE-:/usr/share/live-helper}/functions/*.sh
+LH_BASE="${LH_BASE:/usr/share/live-helper}"
+
+for FUNCTION in "${LH_BASE}"/functions/*.sh
 do
-	. ${FUNCTION}
+	. "${FUNCTION}"
 done
 
 # Setting static variables

Modified: dists/trunk/live-helper/helpers/lh_chroot_interactive
===================================================================
--- dists/trunk/live-helper/helpers/lh_chroot_interactive	2007-06-03 06:26:57 UTC (rev 1938)
+++ dists/trunk/live-helper/helpers/lh_chroot_interactive	2007-06-03 06:41:30 UTC (rev 1939)
@@ -10,9 +10,11 @@
 set -e
 
 # Including common functions
-for FUNCTION in ${LH_BASE-:/usr/share/live-helper}/functions/*.sh
+LH_BASE="${LH_BASE:/usr/share/live-helper}"
+
+for FUNCTION in "${LH_BASE}"/functions/*.sh
 do
-	. ${FUNCTION}
+	. "${FUNCTION}"
 done
 
 # Setting static variables

Modified: dists/trunk/live-helper/helpers/lh_chroot_linux-image
===================================================================
--- dists/trunk/live-helper/helpers/lh_chroot_linux-image	2007-06-03 06:26:57 UTC (rev 1938)
+++ dists/trunk/live-helper/helpers/lh_chroot_linux-image	2007-06-03 06:41:30 UTC (rev 1939)
@@ -10,9 +10,11 @@
 set -e
 
 # Including common functions
-for FUNCTION in ${LH_BASE-:/usr/share/live-helper}/functions/*.sh
+LH_BASE="${LH_BASE:/usr/share/live-helper}"
+
+for FUNCTION in "${LH_BASE}"/functions/*.sh
 do
-	. ${FUNCTION}
+	. "${FUNCTION}"
 done
 
 # Setting static variables

Modified: dists/trunk/live-helper/helpers/lh_chroot_local-hooks
===================================================================
--- dists/trunk/live-helper/helpers/lh_chroot_local-hooks	2007-06-03 06:26:57 UTC (rev 1938)
+++ dists/trunk/live-helper/helpers/lh_chroot_local-hooks	2007-06-03 06:41:30 UTC (rev 1939)
@@ -10,9 +10,11 @@
 set -e
 
 # Including common functions
-for FUNCTION in ${LH_BASE-:/usr/share/live-helper}/functions/*.sh
+LH_BASE="${LH_BASE:/usr/share/live-helper}"
+
+for FUNCTION in "${LH_BASE}"/functions/*.sh
 do
-	. ${FUNCTION}
+	. "${FUNCTION}"
 done
 
 # Setting static variables

Modified: dists/trunk/live-helper/helpers/lh_chroot_local-includes
===================================================================
--- dists/trunk/live-helper/helpers/lh_chroot_local-includes	2007-06-03 06:26:57 UTC (rev 1938)
+++ dists/trunk/live-helper/helpers/lh_chroot_local-includes	2007-06-03 06:41:30 UTC (rev 1939)
@@ -10,9 +10,11 @@
 set -e
 
 # Including common functions
-for FUNCTION in ${LH_BASE-:/usr/share/live-helper}/functions/*.sh
+LH_BASE="${LH_BASE:/usr/share/live-helper}"
+
+for FUNCTION in "${LH_BASE}"/functions/*.sh
 do
-	. ${FUNCTION}
+	. "${FUNCTION}"
 done
 
 # Setting static variables

Modified: dists/trunk/live-helper/helpers/lh_chroot_local-packages
===================================================================
--- dists/trunk/live-helper/helpers/lh_chroot_local-packages	2007-06-03 06:26:57 UTC (rev 1938)
+++ dists/trunk/live-helper/helpers/lh_chroot_local-packages	2007-06-03 06:41:30 UTC (rev 1939)
@@ -10,9 +10,11 @@
 set -e
 
 # Including common functions
-for FUNCTION in ${LH_BASE-:/usr/share/live-helper}/functions/*.sh
+LH_BASE="${LH_BASE:/usr/share/live-helper}"
+
+for FUNCTION in "${LH_BASE}"/functions/*.sh
 do
-	. ${FUNCTION}
+	. "${FUNCTION}"
 done
 
 # Setting static variables

Modified: dists/trunk/live-helper/helpers/lh_chroot_local-packageslists
===================================================================
--- dists/trunk/live-helper/helpers/lh_chroot_local-packageslists	2007-06-03 06:26:57 UTC (rev 1938)
+++ dists/trunk/live-helper/helpers/lh_chroot_local-packageslists	2007-06-03 06:41:30 UTC (rev 1939)
@@ -10,9 +10,11 @@
 set -e
 
 # Including common functions
-for FUNCTION in ${LH_BASE-:/usr/share/live-helper}/functions/*.sh
+LH_BASE="${LH_BASE:/usr/share/live-helper}"
+
+for FUNCTION in "${LH_BASE}"/functions/*.sh
 do
-	. ${FUNCTION}
+	. "${FUNCTION}"
 done
 
 # Setting static variables

Modified: dists/trunk/live-helper/helpers/lh_chroot_localization
===================================================================
--- dists/trunk/live-helper/helpers/lh_chroot_localization	2007-06-03 06:26:57 UTC (rev 1938)
+++ dists/trunk/live-helper/helpers/lh_chroot_localization	2007-06-03 06:41:30 UTC (rev 1939)
@@ -10,9 +10,11 @@
 set -e
 
 # Including common functions
-for FUNCTION in ${LH_BASE-:/usr/share/live-helper}/functions/*.sh
+LH_BASE="${LH_BASE:/usr/share/live-helper}"
+
+for FUNCTION in "${LH_BASE}"/functions/*.sh
 do
-	. ${FUNCTION}
+	. "${FUNCTION}"
 done
 
 # Setting static variables

Modified: dists/trunk/live-helper/helpers/lh_chroot_packages
===================================================================
--- dists/trunk/live-helper/helpers/lh_chroot_packages	2007-06-03 06:26:57 UTC (rev 1938)
+++ dists/trunk/live-helper/helpers/lh_chroot_packages	2007-06-03 06:41:30 UTC (rev 1939)
@@ -10,9 +10,11 @@
 set -e
 
 # Including common functions
-for FUNCTION in ${LH_BASE-:/usr/share/live-helper}/functions/*.sh
+LH_BASE="${LH_BASE:/usr/share/live-helper}"
+
+for FUNCTION in "${LH_BASE}"/functions/*.sh
 do
-	. ${FUNCTION}
+	. "${FUNCTION}"
 done
 
 # Setting static variables

Modified: dists/trunk/live-helper/helpers/lh_chroot_packageslists
===================================================================
--- dists/trunk/live-helper/helpers/lh_chroot_packageslists	2007-06-03 06:26:57 UTC (rev 1938)
+++ dists/trunk/live-helper/helpers/lh_chroot_packageslists	2007-06-03 06:41:30 UTC (rev 1939)
@@ -10,9 +10,11 @@
 set -e
 
 # Including common functions
-for FUNCTION in ${LH_BASE-:/usr/share/live-helper}/functions/*.sh
+LH_BASE="${LH_BASE:/usr/share/live-helper}"
+
+for FUNCTION in "${LH_BASE}"/functions/*.sh
 do
-	. ${FUNCTION}
+	. "${FUNCTION}"
 done
 
 # Setting static variables

Modified: dists/trunk/live-helper/helpers/lh_chroot_preseed
===================================================================
--- dists/trunk/live-helper/helpers/lh_chroot_preseed	2007-06-03 06:26:57 UTC (rev 1938)
+++ dists/trunk/live-helper/helpers/lh_chroot_preseed	2007-06-03 06:41:30 UTC (rev 1939)
@@ -10,7 +10,9 @@
 set -e
 
 # Including common functions
-for FUNCTION in ${LH_BASE-:/usr/share/live-helper}/functions/*.sh
+LH_BASE="${LH_BASE:/usr/share/live-helper}"
+
+for FUNCTION in "${LH_BASE}"/functions/*.sh
 do
 	. "${FUNCTION}"
 done

Modified: dists/trunk/live-helper/helpers/lh_chroot_proc
===================================================================
--- dists/trunk/live-helper/helpers/lh_chroot_proc	2007-06-03 06:26:57 UTC (rev 1938)
+++ dists/trunk/live-helper/helpers/lh_chroot_proc	2007-06-03 06:41:30 UTC (rev 1939)
@@ -10,9 +10,11 @@
 set -e
 
 # Including common functions
-for FUNCTION in ${LH_BASE-:/usr/share/live-helper}/functions/*.sh
+LH_BASE="${LH_BASE:/usr/share/live-helper}"
+
+for FUNCTION in "${LH_BASE}"/functions/*.sh
 do
-	. ${FUNCTION}
+	. "${FUNCTION}"
 done
 
 # Setting static variables

Modified: dists/trunk/live-helper/helpers/lh_chroot_resolv
===================================================================
--- dists/trunk/live-helper/helpers/lh_chroot_resolv	2007-06-03 06:26:57 UTC (rev 1938)
+++ dists/trunk/live-helper/helpers/lh_chroot_resolv	2007-06-03 06:41:30 UTC (rev 1939)
@@ -10,9 +10,11 @@
 set -e
 
 # Including common functions
-for FUNCTION in ${LH_BASE-:/usr/share/live-helper}/functions/*.sh
+LH_BASE="${LH_BASE:/usr/share/live-helper}"
+
+for FUNCTION in "${LH_BASE}"/functions/*.sh
 do
-	. ${FUNCTION}
+	. "${FUNCTION}"
 done
 
 # Setting static variables

Modified: dists/trunk/live-helper/helpers/lh_chroot_sources
===================================================================
--- dists/trunk/live-helper/helpers/lh_chroot_sources	2007-06-03 06:26:57 UTC (rev 1938)
+++ dists/trunk/live-helper/helpers/lh_chroot_sources	2007-06-03 06:41:30 UTC (rev 1939)
@@ -10,9 +10,11 @@
 set -e
 
 # Including common functions
-for FUNCTION in ${LH_BASE-:/usr/share/live-helper}/functions/*.sh
+LH_BASE="${LH_BASE:/usr/share/live-helper}"
+
+for FUNCTION in "${LH_BASE}"/functions/*.sh
 do
-	. ${FUNCTION}
+	. "${FUNCTION}"
 done
 
 # Setting static variables

Modified: dists/trunk/live-helper/helpers/lh_chroot_symlinks
===================================================================
--- dists/trunk/live-helper/helpers/lh_chroot_symlinks	2007-06-03 06:26:57 UTC (rev 1938)
+++ dists/trunk/live-helper/helpers/lh_chroot_symlinks	2007-06-03 06:41:30 UTC (rev 1939)
@@ -10,9 +10,11 @@
 set -e
 
 # Including common functions
-for FUNCTION in ${LH_BASE-:/usr/share/live-helper}/functions/*.sh
+LH_BASE="${LH_BASE:/usr/share/live-helper}"
+
+for FUNCTION in "${LH_BASE}"/functions/*.sh
 do
-	. ${FUNCTION}
+	. "${FUNCTION}"
 done
 
 # Setting static variables

Modified: dists/trunk/live-helper/helpers/lh_chroot_sysfs
===================================================================
--- dists/trunk/live-helper/helpers/lh_chroot_sysfs	2007-06-03 06:26:57 UTC (rev 1938)
+++ dists/trunk/live-helper/helpers/lh_chroot_sysfs	2007-06-03 06:41:30 UTC (rev 1939)
@@ -10,9 +10,11 @@
 set -e
 
 # Including common functions
-for FUNCTION in ${LH_BASE-:/usr/share/live-helper}/functions/*.sh
+LH_BASE="${LH_BASE:/usr/share/live-helper}"
+
+for FUNCTION in "${LH_BASE}"/functions/*.sh
 do
-	. ${FUNCTION}
+	. "${FUNCTION}"
 done
 
 # Setting static variables

Modified: dists/trunk/live-helper/helpers/lh_chroot_sysvinit
===================================================================
--- dists/trunk/live-helper/helpers/lh_chroot_sysvinit	2007-06-03 06:26:57 UTC (rev 1938)
+++ dists/trunk/live-helper/helpers/lh_chroot_sysvinit	2007-06-03 06:41:30 UTC (rev 1939)
@@ -10,9 +10,11 @@
 set -e
 
 # Including common functions
-for FUNCTION in ${LH_BASE-:/usr/share/live-helper}/functions/*.sh
+LH_BASE="${LH_BASE:/usr/share/live-helper}"
+
+for FUNCTION in "${LH_BASE}"/functions/*.sh
 do
-	. ${FUNCTION}
+	. "${FUNCTION}"
 done
 
 # Setting static variables

Modified: dists/trunk/live-helper/helpers/lh_chroot_sysvrc
===================================================================
--- dists/trunk/live-helper/helpers/lh_chroot_sysvrc	2007-06-03 06:26:57 UTC (rev 1938)
+++ dists/trunk/live-helper/helpers/lh_chroot_sysvrc	2007-06-03 06:41:30 UTC (rev 1939)
@@ -10,9 +10,11 @@
 set -e
 
 # Including common functions
-for FUNCTION in ${LH_BASE-:/usr/share/live-helper}/functions/*.sh
+LH_BASE="${LH_BASE:/usr/share/live-helper}"
+
+for FUNCTION in "${LH_BASE}"/functions/*.sh
 do
-	. ${FUNCTION}
+	. "${FUNCTION}"
 done
 
 # Setting static variables

Modified: dists/trunk/live-helper/helpers/lh_chroot_tasks
===================================================================
--- dists/trunk/live-helper/helpers/lh_chroot_tasks	2007-06-03 06:26:57 UTC (rev 1938)
+++ dists/trunk/live-helper/helpers/lh_chroot_tasks	2007-06-03 06:41:30 UTC (rev 1939)
@@ -10,9 +10,11 @@
 set -e
 
 # Including common functions
-for FUNCTION in ${LH_BASE-:/usr/share/live-helper}/functions/*.sh
+LH_BASE="${LH_BASE:/usr/share/live-helper}"
+
+for FUNCTION in "${LH_BASE}"/functions/*.sh
 do
-	. ${FUNCTION}
+	. "${FUNCTION}"
 done
 
 # Setting static variables

Modified: dists/trunk/live-helper/helpers/lh_clean
===================================================================
--- dists/trunk/live-helper/helpers/lh_clean	2007-06-03 06:26:57 UTC (rev 1938)
+++ dists/trunk/live-helper/helpers/lh_clean	2007-06-03 06:41:30 UTC (rev 1939)
@@ -10,9 +10,11 @@
 set -e
 
 # Including common functions
-for FUNCTION in ${LH_BASE-:/usr/share/live-helper}/functions/*.sh
+LH_BASE="${LH_BASE:/usr/share/live-helper}"
+
+for FUNCTION in "${LH_BASE}"/functions/*.sh
 do
-	. ${FUNCTION}
+	. "${FUNCTION}"
 done
 
 # Setting static variables

Modified: dists/trunk/live-helper/helpers/lh_config
===================================================================
--- dists/trunk/live-helper/helpers/lh_config	2007-06-03 06:26:57 UTC (rev 1938)
+++ dists/trunk/live-helper/helpers/lh_config	2007-06-03 06:41:30 UTC (rev 1939)
@@ -10,9 +10,11 @@
 set -e
 
 # Including common functions
-for FUNCTION in ${LH_BASE-:/usr/share/live-helper}/functions/*.sh
+LH_BASE="${LH_BASE:/usr/share/live-helper}"
+
+for FUNCTION in "${LH_BASE}"/functions/*.sh
 do
-	. ${FUNCTION}
+	. "${FUNCTION}"
 done
 
 # Setting static variables

Modified: dists/trunk/live-helper/helpers/lh_losetup
===================================================================
--- dists/trunk/live-helper/helpers/lh_losetup	2007-06-03 06:26:57 UTC (rev 1938)
+++ dists/trunk/live-helper/helpers/lh_losetup	2007-06-03 06:41:30 UTC (rev 1939)
@@ -10,9 +10,11 @@
 set -e
 
 # Including common functions
-for FUNCTION in ${LH_BASE-:/usr/share/live-helper}/functions/*.sh
+LH_BASE="${LH_BASE:/usr/share/live-helper}"
+
+for FUNCTION in "${LH_BASE}"/functions/*.sh
 do
-	. ${FUNCTION}
+	. "${FUNCTION}"
 done
 
 # Setting static variables

Modified: dists/trunk/live-helper/helpers/lh_source
===================================================================
--- dists/trunk/live-helper/helpers/lh_source	2007-06-03 06:26:57 UTC (rev 1938)
+++ dists/trunk/live-helper/helpers/lh_source	2007-06-03 06:41:30 UTC (rev 1939)
@@ -10,9 +10,11 @@
 set -e
 
 # Including common functions
-for FUNCTION in ${LH_BASE-:/usr/share/live-helper}/functions/*.sh
+LH_BASE="${LH_BASE:/usr/share/live-helper}"
+
+for FUNCTION in "${LH_BASE}"/functions/*.sh
 do
-	. ${FUNCTION}
+	. "${FUNCTION}"
 done
 
 # Setting static variables

Modified: dists/trunk/live-helper/helpers/lh_source_debian
===================================================================
--- dists/trunk/live-helper/helpers/lh_source_debian	2007-06-03 06:26:57 UTC (rev 1938)
+++ dists/trunk/live-helper/helpers/lh_source_debian	2007-06-03 06:41:30 UTC (rev 1939)
@@ -10,9 +10,11 @@
 set -e
 
 # Including common functions
-for FUNCTION in ${LH_BASE-:/usr/share/live-helper}/functions/*.sh
+LH_BASE="${LH_BASE:/usr/share/live-helper}"
+
+for FUNCTION in "${LH_BASE}"/functions/*.sh
 do
-	. ${FUNCTION}
+	. "${FUNCTION}"
 done
 
 # Setting static variables

Modified: dists/trunk/live-helper/helpers/lh_source_debian-live
===================================================================
--- dists/trunk/live-helper/helpers/lh_source_debian-live	2007-06-03 06:26:57 UTC (rev 1938)
+++ dists/trunk/live-helper/helpers/lh_source_debian-live	2007-06-03 06:41:30 UTC (rev 1939)
@@ -10,9 +10,11 @@
 set -e
 
 # Including common functions
-for FUNCTION in ${LH_BASE-:/usr/share/live-helper}/functions/*.sh
+LH_BASE="${LH_BASE:/usr/share/live-helper}"
+
+for FUNCTION in "${LH_BASE}"/functions/*.sh
 do
-	. ${FUNCTION}
+	. "${FUNCTION}"
 done
 
 # Setting static variables

Modified: dists/trunk/live-helper/helpers/lh_source_generic
===================================================================
--- dists/trunk/live-helper/helpers/lh_source_generic	2007-06-03 06:26:57 UTC (rev 1938)
+++ dists/trunk/live-helper/helpers/lh_source_generic	2007-06-03 06:41:30 UTC (rev 1939)
@@ -10,9 +10,11 @@
 set -e
 
 # Including common functions
-for FUNCTION in ${LH_BASE-:/usr/share/live-helper}/functions/*.sh
+LH_BASE="${LH_BASE:/usr/share/live-helper}"
+
+for FUNCTION in "${LH_BASE}"/functions/*.sh
 do
-	. ${FUNCTION}
+	. "${FUNCTION}"
 done
 
 # Setting static variables

Modified: dists/trunk/live-helper/helpers/lh_source_hdd
===================================================================
--- dists/trunk/live-helper/helpers/lh_source_hdd	2007-06-03 06:26:57 UTC (rev 1938)
+++ dists/trunk/live-helper/helpers/lh_source_hdd	2007-06-03 06:41:30 UTC (rev 1939)
@@ -10,9 +10,11 @@
 set -e
 
 # Including common functions
-for FUNCTION in ${LH_BASE-:/usr/share/live-helper}/functions/*.sh
+LH_BASE="${LH_BASE:/usr/share/live-helper}"
+
+for FUNCTION in "${LH_BASE}"/functions/*.sh
 do
-	. ${FUNCTION}
+	. "${FUNCTION}"
 done
 
 # Setting static variables

Modified: dists/trunk/live-helper/helpers/lh_source_iso
===================================================================
--- dists/trunk/live-helper/helpers/lh_source_iso	2007-06-03 06:26:57 UTC (rev 1938)
+++ dists/trunk/live-helper/helpers/lh_source_iso	2007-06-03 06:41:30 UTC (rev 1939)
@@ -10,9 +10,11 @@
 set -e
 
 # Including common functions
-for FUNCTION in ${LH_BASE-:/usr/share/live-helper}/functions/*.sh
+LH_BASE="${LH_BASE:/usr/share/live-helper}"
+
+for FUNCTION in "${LH_BASE}"/functions/*.sh
 do
-	. ${FUNCTION}
+	. "${FUNCTION}"
 done
 
 # Setting static variables

Modified: dists/trunk/live-helper/helpers/lh_source_md5sum
===================================================================
--- dists/trunk/live-helper/helpers/lh_source_md5sum	2007-06-03 06:26:57 UTC (rev 1938)
+++ dists/trunk/live-helper/helpers/lh_source_md5sum	2007-06-03 06:41:30 UTC (rev 1939)
@@ -10,9 +10,11 @@
 set -e
 
 # Including common functions
-for FUNCTION in ${LH_BASE-:/usr/share/live-helper}/functions/*.sh
+LH_BASE="${LH_BASE:/usr/share/live-helper}"
+
+for FUNCTION in "${LH_BASE}"/functions/*.sh
 do
-	. ${FUNCTION}
+	. "${FUNCTION}"
 done
 
 # Setting static variables

Modified: dists/trunk/live-helper/helpers/lh_source_net
===================================================================
--- dists/trunk/live-helper/helpers/lh_source_net	2007-06-03 06:26:57 UTC (rev 1938)
+++ dists/trunk/live-helper/helpers/lh_source_net	2007-06-03 06:41:30 UTC (rev 1939)
@@ -10,9 +10,11 @@
 set -e
 
 # Including common functions
-for FUNCTION in ${LH_BASE-:/usr/share/live-helper}/functions/*.sh
+LH_BASE="${LH_BASE:/usr/share/live-helper}"
+
+for FUNCTION in "${LH_BASE}"/functions/*.sh
 do
-	. ${FUNCTION}
+	. "${FUNCTION}"
 done
 
 # Setting static variables

Modified: dists/trunk/live-helper/helpers/lh_source_usb-hdd
===================================================================
--- dists/trunk/live-helper/helpers/lh_source_usb-hdd	2007-06-03 06:26:57 UTC (rev 1938)
+++ dists/trunk/live-helper/helpers/lh_source_usb-hdd	2007-06-03 06:41:30 UTC (rev 1939)
@@ -10,9 +10,11 @@
 set -e
 
 # Including common functions
-for FUNCTION in ${LH_BASE-:/usr/share/live-helper}/functions/*.sh
+LH_BASE="${LH_BASE:/usr/share/live-helper}"
+
+for FUNCTION in "${LH_BASE}"/functions/*.sh
 do
-	. ${FUNCTION}
+	. "${FUNCTION}"
 done
 
 # Setting static variables

Modified: dists/trunk/live-helper/helpers/lh_testroot
===================================================================
--- dists/trunk/live-helper/helpers/lh_testroot	2007-06-03 06:26:57 UTC (rev 1938)
+++ dists/trunk/live-helper/helpers/lh_testroot	2007-06-03 06:41:30 UTC (rev 1939)
@@ -10,9 +10,11 @@
 set -e
 
 # Including common functions
-for FUNCTION in ${LH_BASE-:/usr/share/live-helper}/functions/*.sh
+LH_BASE="${LH_BASE:/usr/share/live-helper}"
+
+for FUNCTION in "${LH_BASE}"/functions/*.sh
 do
-	. ${FUNCTION}
+	. "${FUNCTION}"
 done
 
 # Setting static variables

Modified: dists/trunk/live-helper/helpers/make-live
===================================================================
--- dists/trunk/live-helper/helpers/make-live	2007-06-03 06:26:57 UTC (rev 1938)
+++ dists/trunk/live-helper/helpers/make-live	2007-06-03 06:41:30 UTC (rev 1939)
@@ -23,9 +23,11 @@
 set -e
 
 # Including common functions
-for FUNCTION in ${LH_BASE-:/usr/share/live-helper}/functions/*.sh
+LH_BASE="${LH_BASE:/usr/share/live-helper}"
+
+for FUNCTION in "${LH_BASE}"/functions/*.sh
 do
-        . ${FUNCTION}
+	. "${FUNCTION}"
 done
 
 # Setting static variables




More information about the Debian-live-changes mailing list