[SCM] live-config branch, debian-next, updated. debian/2.0_a13-1-11-g6c5e8c1

Daniel Baumann daniel at debian.org
Thu Jul 15 23:31:19 UTC 2010


The following commit has been merged in the debian-next branch:
commit 6c5e8c15d600874864bd9714e3fbc17df6e8b48a
Author: Daniel Baumann <daniel at debian.org>
Date:   Fri Jul 16 01:30:17 2010 +0200

    Prefixing some forgotten internal variables.

diff --git a/scripts/config.sh b/scripts/config.sh
index 0a680e8..f3e0d3d 100755
--- a/scripts/config.sh
+++ b/scripts/config.sh
@@ -146,18 +146,18 @@ Cmdline ()
 	# Include requested scripts
 	if [ -n "${LIVE_CONFIGS}" ]
 	then
-		for LIVE_CONFIG in $(echo ${LIVE_CONFIGS} | sed -e 's|,| |g')
+		for _CONFIG in $(echo ${LIVE_CONFIGS} | sed -e 's|,| |g')
 		do
-			_SCRIPTS="${_SCRIPTS} $(ls /lib/live/config/???-${LIVE_CONFIG})"
+			_SCRIPTS="${_SCRIPTS} $(ls /lib/live/config/???-${_CONFIG})"
 		done
 	fi
 
 	# Exclude requested scripts
 	if [ -n "${LIVE_NOCONFIGS}" ]
 	then
-		for LIVE_NOCONFIG in $(echo ${LIVE_NOCONFIGS} | sed -e 's|,| |g')
+		for _NOCONFIG in $(echo ${LIVE_NOCONFIGS} | sed -e 's|,| |g')
 		do
-			_SCRIPTS="$(echo ${_SCRIPTS} | sed -e "s|$(ls /lib/live/config/???-${LIVE_NOCONFIG})||")"
+			_SCRIPTS="$(echo ${_SCRIPTS} | sed -e "s|$(ls /lib/live/config/???-${_NOCONFIG})||")"
 		done
 	fi
 }

-- 
live-config



More information about the debian-live-changes mailing list