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

daniel at alioth.debian.org daniel at alioth.debian.org
Mon May 28 14:50:27 UTC 2007


Author: daniel
Date: 2007-05-28 14:50:27 +0000 (Mon, 28 May 2007)
New Revision: 1850

Modified:
   dists/trunk/live-helper/helpers/lh_bootstrap
   dists/trunk/live-helper/helpers/lh_bootstrap_cdebootstrap
   dists/trunk/live-helper/helpers/lh_bootstrap_debootstrap
Log:


Modified: dists/trunk/live-helper/helpers/lh_bootstrap
===================================================================
--- dists/trunk/live-helper/helpers/lh_bootstrap	2007-05-28 14:28:12 UTC (rev 1849)
+++ dists/trunk/live-helper/helpers/lh_bootstrap	2007-05-28 14:50:27 UTC (rev 1850)
@@ -9,13 +9,13 @@
 
 set -e
 
-# Source common functions
+# Including common functions
 for FUNCTION in /usr/share/live-helper/functions/*.sh
 do
-	. ${FUNCTION}
+	. "${FUNCTION}"
 done
 
-# Set static variables
+# Setting static variables
 DESCRIPTION="bootstrap a Debian system"
 HELP=""
 USAGE="${PROGRAM} [--force]"

Modified: dists/trunk/live-helper/helpers/lh_bootstrap_cdebootstrap
===================================================================
--- dists/trunk/live-helper/helpers/lh_bootstrap_cdebootstrap	2007-05-28 14:28:12 UTC (rev 1849)
+++ dists/trunk/live-helper/helpers/lh_bootstrap_cdebootstrap	2007-05-28 14:50:27 UTC (rev 1850)
@@ -9,21 +9,20 @@
 
 set -e
 
-# Source common functions
+# Including common functions
 for FUNCTION in /usr/share/live-helper/functions/*.sh
 do
-	. ${FUNCTION}
+	. "${FUNCTION}"
 done
 
-# Set static variables
+# Setting static variables
 DESCRIPTION="bootstrap a Debian system with cdebootstrap(1)"
 HELP=""
 USAGE="${PROGRAM} [--force]"
 
 Arguments "${@}"
 
-# Ensure that a system is built as root
-lh_testroot
+Echo_message "Begin bootstrapping system"
 
 # Reading configuration files
 Read_conffile config/common
@@ -38,6 +37,9 @@
 	exit 0
 fi
 
+# Ensure that a system is built as root
+lh_testroot
+
 # Checking stage file
 Check_stagefile .stage/bootstrap
 

Modified: dists/trunk/live-helper/helpers/lh_bootstrap_debootstrap
===================================================================
--- dists/trunk/live-helper/helpers/lh_bootstrap_debootstrap	2007-05-28 14:28:12 UTC (rev 1849)
+++ dists/trunk/live-helper/helpers/lh_bootstrap_debootstrap	2007-05-28 14:50:27 UTC (rev 1850)
@@ -9,21 +9,20 @@
 
 set -e
 
-# Source common functions
+# Including common functions
 for FUNCTION in /usr/share/live-helper/functions/*.sh
 do
 	. ${FUNCTION}
 done
 
-# Set static variables
+# Setting static variables
 DESCRIPTION="bootstrap a Debian system with debootstrap(8)"
 HELP=""
 USAGE="${PROGRAM} [--force]"
 
 Arguments "${@}"
 
-# Ensure that a system is built as root
-lh_testroot
+Echo_message "Begin bootstrapping system"
 
 # Reading configuration files
 Read_conffile config/common
@@ -38,6 +37,9 @@
 	exit 0
 fi
 
+# Ensure that a system is built as root
+lh_testroot
+
 # Checking stage file
 Check_stagefile .stage/bootstrap
 




More information about the Debian-live-changes mailing list