[SCM] live-build branch, upstream, updated. upstream/2.0.2-1-gfec8bf1

Daniel Baumann daniel at debian.org
Tue Oct 12 09:11:58 UTC 2010


The following commit has been merged in the upstream branch:
commit fec8bf1f1f9733ff505a9c9fe2fafbf84cc1a191
Author: Daniel Baumann <daniel at debian.org>
Date:   Tue Oct 12 11:12:18 2010 +0200

    Adding upstream version 2.0.3.

diff --git a/VERSION b/VERSION
index e9307ca..50ffc5a 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-2.0.2
+2.0.3
diff --git a/contrib/syslinux-splash/squeeze/COPYING b/contrib/syslinux-splash/wheezy/COPYING
similarity index 100%
rename from contrib/syslinux-splash/squeeze/COPYING
rename to contrib/syslinux-splash/wheezy/COPYING
diff --git a/contrib/syslinux-splash/squeeze/README b/contrib/syslinux-splash/wheezy/README
similarity index 100%
rename from contrib/syslinux-splash/squeeze/README
rename to contrib/syslinux-splash/wheezy/README
diff --git a/contrib/syslinux-splash/squeeze/debian_bootscreen1.png b/contrib/syslinux-splash/wheezy/debian_bootscreen1.png
similarity index 100%
rename from contrib/syslinux-splash/squeeze/debian_bootscreen1.png
rename to contrib/syslinux-splash/wheezy/debian_bootscreen1.png
diff --git a/contrib/syslinux-splash/squeeze/debian_bootscreen1.svg b/contrib/syslinux-splash/wheezy/debian_bootscreen1.svg
similarity index 100%
rename from contrib/syslinux-splash/squeeze/debian_bootscreen1.svg
rename to contrib/syslinux-splash/wheezy/debian_bootscreen1.svg
diff --git a/examples/cron/cron.daily b/examples/cron/cron.daily
deleted file mode 100755
index 5610756..0000000
--- a/examples/cron/cron.daily
+++ /dev/null
@@ -1,155 +0,0 @@
-#!/bin/sh
-
-set -e
-
-BUILD="daily"
-HOST="$(hostname)"
-
-# Checking for live-build availability
-if [ ! -x /usr/bin/lb ]
-then
-	exit 0
-fi
-
-# Checking for live-build defaults
-if [ -r /etc/default/live-build_autobuild ]
-then
-	. /etc/default/live-build_autobuild
-else
-	echo "E: /etc/default/live-build_autobuild missing."
-	exit 1
-fi
-
-# Checking for autobuild
-if [ "${AUTOBUILD}" != "true" ]
-then
-	exit 0
-fi
-
-# Checking for build directory
-if [ ! -d "${TEMPDIR}" ]
-then
-	mkdir -p "${TEMPDIR}"/debian-live
-else
-	# FIXME: maybe we should just remove the left overs.
-	echo "E: ${TEMPDIR} needs cleanup."
-	exit 1
-fi
-
-echo "$(date +%b\ %d\ %H:%M:%S) ${HOST} live-build: begin daily build." >> /var/log/live
-
-for ARCHITECTURE in ${ARCHITECTURES}
-do
-	for DISTRIBUTION in ${DISTRIBUTIONS}
-	do
-		for PACKAGES_LIST in ${PACKAGES_LISTS}
-		do
-			if [ ! -f "${DESTDIR}"/"${BUILD}"-builds/${DATE}/log/debian-live-${DISTRIBUTION}-${ARCHITECTURE}-${PACKAGES_LIST}_${DATE}-iso-log.txt ]
-			then
-				# Creating build directory
-				mkdir -p "${TEMPDIR}"/debian-live
-
-				cd "${TEMPDIR}"/debian-live
-				echo "Begin: $(date -R)" > "${TEMPDIR}"/debian-live/log.txt
-
-				# Generating images
-				lh_config -b iso -s tar --distribution ${DISTRIBUTION} --packages-lists ${PACKAGES_LIST} --mirror-bootstrap ${MIRROR_BOOTSTRAP} --mirror-binary ${MIRROR_BINARY} --mirror-binary-security ${MIRROR_BINARY_SECURITY} --source true ${OPTIONS}
-				lh_build >> "${TEMPDIR}"/debian-live/log.txt 2>&1
-
-				echo "End: $(date -R)" >> "${TEMPDIR}"/debian-live/log.txt
-			fi
-
-			if [ -f "${TEMPDIR}"/debian-live/binary.iso ] && [ -f "${TEMPDIR}"/debian-live/source.tar ]
-			then
-				# Creating log directory
-				mkdir -p "${DESTDIR}"/"${BUILD}"-builds/${DATE}/log
-
-				# Moving logs
-				mv "${TEMPDIR}"/debian-live/log.txt "${DESTDIR}"/"${BUILD}"-builds/${DATE}/log/debian-live-${DISTRIBUTION}-${ARCHITECTURE}-${PACKAGES_LIST}_${DATE}-iso-log.txt
-				mv "${TEMPDIR}"/debian-live/packages.txt "${DESTDIR}"/"${BUILD}"-builds/${DATE}/log/debian-live-${DISTRIBUTION}-${ARCHITECTURE}-${PACKAGES_LIST}_${DATE}-iso-packages.txt
-
-				# Creating images directory
-				mkdir -p "${DESTDIR}"/"${BUILD}"-builds/${DATE}/${ARCHITECTURE}
-				mkdir -p "${DESTDIR}"/"${BUILD}"-builds/${DATE}/source
-
-				# Moving images
-				mv "${TEMPDIR}"/debian-live/binary.iso "${DESTDIR}"/"${BUILD}"-builds/${DATE}/${ARCHITECTURE}/debian-live-${DISTRIBUTION}-${ARCHITECTURE}-${PACKAGES_LIST}.iso
-				mv "${TEMPDIR}"/debian-live/source.tar "${DESTDIR}"/"${BUILD}"-builds/${DATE}/source/debian-live-${DISTRIBUTION}-source-${PACKAGES_LIST}.tar
-			fi
-
-			if [ ! -f "${DESTDIR}"/"${BUILD}"-builds/${DATE}/log/debian-live-${DISTRIBUTION}-${ARCHITECTURE}-${PACKAGES_LIST}_${DATE}-usb-hdd-log.txt ]
-			then
-				# Workaround of missing multi-binary support in live-build
-				mv "${TEMPDIR}"/debian-live/binary/casper "${TEMPDIR}"/debian-live/casper.tmp
-				rm -rf "${TEMPDIR}"/debian-live/binary* "${TEMPDIR}"/debian-live/.stage/binary_*
-				mkdir "${TEMPDIR}"/debian-live/binary
-				mv "${TEMPDIR}"/debian-live/casper.tmp "${TEMPDIR}"/debian-live/binary/casper
-				touch "${TEMPDIR}"/debian-live/.stage/binary_chroot
-				touch "${TEMPDIR}"/debian-live/.stage/binary_rootfs
-
-				# Creating build directory
-				mkdir -p "${TEMPDIR}"/debian-live
-
-				cd "${TEMPDIR}"/debian-live
-				echo "Begin: $(date -R)" > "${TEMPDIR}"/debian-live/log.txt
-
-				# Generating images
-				lh_config -b usb-hdd -s tar --distribution ${DISTRIBUTION} --packages-lists ${PACKAGES_LIST} --mirror-bootstrap ${MIRROR_BOOTSTRAP} --mirror-binary ${MIRROR_BINARY} --mirror-binary-security ${MIRROR_BINARY_SECURITY} --source false ${OPTIONS}
-				lh_build >> "${TEMPDIR}"/debian-live/log.txt 2>&1
-
-				echo "End: $(date -R)" >> "${TEMPDIR}"/debian-live/log.txt
-			fi
-
-			if [ -f "${TEMPDIR}"/debian-live/binary.img ]
-			then
-				# Creating log directory
-				mkdir -p "${DESTDIR}"/"${BUILD}"-builds/${DATE}/log
-
-				# Moving logs
-				mv "${TEMPDIR}"/debian-live/log.txt "${DESTDIR}"/"${BUILD}"-builds/${DATE}/log/debian-live-${DISTRIBUTION}-${ARCHITECTURE}-${PACKAGES_LIST}_${DATE}-usb-hdd-log.txt
-				cp "${DESTDIR}"/"${BUILD}"-builds/${DATE}/log/debian-live-${DISTRIBUTION}-${ARCHITECTURE}-${PACKAGES_LIST}_${DATE}-iso-packages.txt "${DESTDIR}"/"${BUILD}"-builds/${DATE}/log/debian-live-${DISTRIBUTION}-${ARCHITECTURE}-${PACKAGES_LIST}_${DATE}-usb-hdd-packages.txt
-
-				# Creating image directory
-				mkdir -p "${DESTDIR}"/"${BUILD}"-builds/${DATE}/${ARCHITECTURE}
-
-				# Moving images
-				mv "${TEMPDIR}"/debian-live/binary.img "${DESTDIR}"/"${BUILD}"-builds/${DATE}/${ARCHITECTURE}/debian-live-${DISTRIBUTION}-${ARCHITECTURE}-${PACKAGES_LIST}.img
-			fi
-
-			# Cleanup
-			cd "${TEMPDIR}"/debian-live
-			lh_clean
-		done
-
-		# Cleanup
-		cd "${TEMPDIR}"/debian-live
-		lh_clean purge
-	done
-done
-
-# Cleaning up
-if [ -f "${TEMPDIR}"/debian-live/chroot/proc/version ]
-then
-	umount "${TEMPDIR}"/debian-live/chroot/proc
-fi
-
-if [ -d "${TEMPDIR}"/debian-live/chroot/sys/kernel ]
-then
-	umount "${TEMPDIR}"/debian-live/chroot/sys
-fi
-
-# Removing build directory
-rm -rf "${TEMPDIR}"
-
-# Creating md5sums
-for DIRECTORY in "${DESTDIR}"/"${BUILD}"-builds/${DATE}/*
-do
-	cd "${DIRECTORY}"
-	md5sum * > MD5SUMS
-done
-
-# Creating current symlink
-rm -f "${DESTDIR}"/"${BUILD}"-builds/current
-ln -s ${DATE} "${DESTDIR}"/"${BUILD}"-builds/current
-
-echo "$(date +%b\ %d\ %H:%M:%S) ${HOST} live-build: end daily build." >> /var/log/live
diff --git a/examples/cron/default b/examples/cron/default
deleted file mode 100644
index 1778b5e..0000000
--- a/examples/cron/default
+++ /dev/null
@@ -1,16 +0,0 @@
-# Defaults for /etc/cron.daily/live-build_autobuild
-
-AUTOBUILD="false"
-
-DATE="$(date +%Y%m%d)"
-DESTDIR="/srv/debian-live"
-TEMPDIR="/srv/tmp/live-build"
-
-OPTIONS="--binary-indices false"
-
-ARCHITECTURES="$(dpkg --print-architecture)"
-DISTRIBUTIONS="sid"
-MIRROR_BOOTSTRAP="http://ftp.debian.org/debian/"
-MIRROR_BINARY="http://ftp.debian.org/debian/"
-MIRROR_BINARY_SECURITY="http://security.debian.org/"
-PACKAGES_LISTS="standard rescue gnome-desktop kde-desktop xfce-desktop"
diff --git a/examples/cron/images.sh b/examples/cron/images.sh
deleted file mode 100755
index 022eaa4..0000000
--- a/examples/cron/images.sh
+++ /dev/null
@@ -1,215 +0,0 @@
-#!/bin/sh
-
-set -e
-
-# Static variables
-DISTRIBUTIONS="${DISTRIBUTIONS:-lenny squeeze sid}"
-FLAVOURS="${FLAVOURS:-standard rescue gnome-desktop kde-desktop lxde-desktop xfce-desktop}"
-SOURCE="${SOURCE:-true}"
-
-MIRROR="${MIRROR:-http://cdn.debian.net/debian/}"
-MIRROR_SECURITY="${MIRROR_SECURITY:-http://security.debian.org/}"
-
-# Dynamic variables
-ARCHITECTURE="$(dpkg --print-architecture)"
-DATE="$(date +%Y%m%d)"
-
-Set_defaults ()
-{
-	# Distribution defaults
-	APT_RECOMMENDS="true"
-	BINARY_INDICES="true"
-	DEBIAN_INSTALLER="live"
-	TASKSEL="tasksel"
-
-	# Distribution specific options (ugly!)
-	case "${DISTRIBUTION}" in
-		lenny)
-			APT_RECOMMENDS="false"
-			BINARY_INDICES="true"
-			DEBIAN_INSTALLER="false"
-			TASKSEL="aptitude"
-
-			case "${ARCHITECTURE}" in
-				amd64)
-					case "${FLAVOUR}" in
-						gnome-desktop)
-							BINARY_INDICES="false"
-
-							mkdir -p config/chroot_local-hooks
-							cd config/chroot_local-hooks
-							echo "apt-get remove --yes --purge openoffice.org-help-en-us" > package-removals
-							echo "apt-get remove --yes --purge epiphany-browser epiphany-browser-data epiphany-extensions epiphany-gecko" >> package-removals
-							echo "apt-get remove --yes --purge gnome-user-guide" >> package-removals
-							cd -
-							;;
-
-						kde-desktop)
-							BINARY_INDICES="false"
-							;;
-					esac
-					;;
-
-				i386)
-					case "${FLAVOUR}" in
-						gnome-desktop|kde-desktop)
-							BINARY_INDICES="false"
-							KERNEL="-k 686"
-							;;
-					esac
-					;;
-			esac
-			;;
-
-		squeeze)
-			DEBIAN_INSTALLER_DISTRIBUTION="daily"
-
-			LIVE_BOOT="2.0.6-1"
-			LIVE_CONFIG="2.0.7-1"
-			LIVE_INSTALLER="26"
-			DI_LAUNCHER="3"
-
-			mkdir -p config/chroot_local-packages
-			cd config/chroot_local-packages
-
-			# live-boot
-			if [ -n "${LIVE_BOOT}" ]
-			then
-				wget -c http://live.debian.net/archive/packages/live-boot/${LIVE_BOOT}/live-boot_${LIVE_BOOT}.dsc
-				wget -c http://live.debian.net/archive/packages/live-boot/${LIVE_BOOT}/live-boot_${LIVE_BOOT}.diff.gz
-				wget -c http://live.debian.net/archive/packages/live-boot/${LIVE_BOOT}/live-boot_$(echo ${LIVE_BOOT} | awk -F- '{ print $1 }').orig.tar.gz
-				wget -c http://live.debian.net/archive/packages/live-boot/${LIVE_BOOT}/live-boot_${LIVE_BOOT}_all.deb
-				wget -c http://live.debian.net/archive/packages/live-boot/${LIVE_BOOT}/live-boot-initramfs-tools_${LIVE_BOOT}_all.deb
-				wget -c http://live.debian.net/archive/packages/live-boot/${LIVE_BOOT}/live-initramfs_${LIVE_BOOT}_all.deb
-			fi
-
-			# live-config
-			if [ -n "${LIVE_CONFIG}" ]
-			then
-				wget -c http://live.debian.net/archive/packages/live-config/${LIVE_CONFIG}/live-config_${LIVE_CONFIG}.dsc
-				wget -c http://live.debian.net/archive/packages/live-config/${LIVE_CONFIG}/live-config_${LIVE_CONFIG}.diff.gz
-				wget -c http://live.debian.net/archive/packages/live-config/${LIVE_CONFIG}/live-config_$(echo ${LIVE_CONFIG} | awk -F- '{ print $1 }').orig.tar.gz
-				wget -c http://live.debian.net/archive/packages/live-config/${LIVE_CONFIG}/live-config_${LIVE_CONFIG}_all.deb
-				wget -c http://live.debian.net/archive/packages/live-config/${LIVE_CONFIG}/live-config-sysvinit_${LIVE_CONFIG}_all.deb
-			fi
-
-			cd ${OLDPWD}
-
-			mkdir -p config/binary_local-udebs
-			cd config/binary_local-udebs
-
-			# live-installer
-			if [ -n "${LIVE_INSTALLER}" ]
-			then
-				wget -c http://ftp.debian.org/debian/pool/main/l/live-installer/live-installer_${LIVE_INSTALLER}.dsc
-				wget -c http://ftp.debian.org/debian/pool/main/l/live-installer/live-installer_${LIVE_INSTALLER}.tar.gz
-				wget -c http://ftp.debian.org/debian/pool/main/l/live-installer/live-installer_${LIVE_INSTALLER}_${ARCHITECTURE}.udeb
-				wget -c http://ftp.debian.org/debian/pool/main/b/base-installer/base-installer_1.113.dsc
-				wget -c http://ftp.debian.org/debian/pool/main/b/base-installer/base-installer_1.113.tar.gz
-				wget -c http://ftp.debian.org/debian/pool/main/b/base-installer/base-installer_1.113_all.udeb
-				wget -c http://ftp.debian.org/debian/pool/main/b/base-installer/bootstrap-base_1.113_${ARCHITECTURE}.udeb
-			fi
-
-			cd -
-
-			mkdir -p config/chroot_local-packages
-			cd config/chroot_local-packages
-
-			# debian-installer-launcher
-			if [ -n "${DI_LAUNCHER}" ]
-			then
-				wget http://ftp.debian.org/debian/pool/main/d/debian-installer-launcher/debian-installer-launcher_${DI_LAUNCHER}.dsc
-				wget http://ftp.debian.org/debian/pool/main/d/debian-installer-launcher/debian-installer-launcher_${DI_LAUNCHER}.tar.gz
-				wget http://ftp.debian.org/debian/pool/main/d/debian-installer-launcher/debian-installer-launcher_${DI_LAUNCHER}_all.deb
-			fi
-
-			cd -
-			;;
-		esac
-}
-
-# Build images
-for DISTRIBUTION in ${DISTRIBUTIONS}
-do
-	rm -rf cache/stages*
-
-	for FLAVOUR in ${FLAVOURS}
-	do
-		if [ -e .stage ]
-		then
-			lb clean
-		fi
-
-		if [ -e config ]
-		then
-			rm -f config/* || true
-			rmdir --ignore-fail-on-non-empty config/* || true
-		fi
-
-		rm -rf cache/packages*
-		rm -rf cache/stages_rootfs
-
-		Set_defaults
-
-		lb config \
-			--apt-recommends ${APT_RECOMMENDS} \
-			--binary-indices ${BINARY_INDICES} \
-			--bootstrap cdebootstrap \
-			--cache-stages "bootstrap rootfs" \
-			--debian-installer ${DEBIAN_INSTALLER} \
-			--debian-installer-distribution ${DEBIAN_INSTALLER_DISTRIBUTION} \
-			--distribution ${DISTRIBUTION} \
-			--mirror-bootstrap ${MIRROR} \
-			--mirror-chroot ${MIRROR} \
-			--mirror-chroot-security ${MIRROR_SECURITY} \
-			--packages-lists ${FLAVOUR} \
-			--tasksel ${TASKSEL} ${KERNEL}
-
-		lb build 2>&1 | tee debian-live-${DISTRIBUTION}-${ARCHITECTURE}-${FLAVOUR}.iso.log
-
-		mv binary*.iso debian-live-${DISTRIBUTION}-${ARCHITECTURE}-${FLAVOUR}.iso
-		mv binary.list debian-live-${DISTRIBUTION}-${ARCHITECTURE}-${FLAVOUR}.iso.list
-		mv binary.packages debian-live-${DISTRIBUTION}-${ARCHITECTURE}-${FLAVOUR}.iso.packages
-
-		if [ "${ARCHITECTURE}" != "powerpc" ]
-		then
-			lb clean --binary
-			lb config --binary-images usb-hdd
-			lb binary 2>&1 | tee debian-live-${DISTRIBUTION}-${ARCHITECTURE}-${FLAVOUR}.img.log
-
-			mv binary.img debian-live-${DISTRIBUTION}-${ARCHITECTURE}-${FLAVOUR}.img
-			mv binary.list debian-live-${DISTRIBUTION}-${ARCHITECTURE}-${FLAVOUR}.img.list
-			mv binary.packages debian-live-${DISTRIBUTION}-${ARCHITECTURE}-${FLAVOUR}.img.packages
-		fi
-
-		if [ "${ARCHITECTURE}" != "powerpc" ]
-		then
-			lb clean
-			rm -rf cache/stages_rootfs
-			lb config --binary-images net
-
-			lb build 2>&1 | tee debian-live-${DISTRIBUTION}-${ARCHITECTURE}-${FLAVOUR}.tar.gz.log
-
-			mv binary-net.tar.gz debian-live-${DISTRIBUTION}-${ARCHITECTURE}-${FLAVOUR}.tar.gz
-			mv binary.list debian-live-${DISTRIBUTION}-${ARCHITECTURE}-${FLAVOUR}.tar.gz.list
-			mv binary.packages debian-live-${DISTRIBUTION}-${ARCHITECTURE}-${FLAVOUR}.tar.gz.packages
-
-			mv binary/*/filesystem.squashfs debian-live-${DISTRIBUTION}-${ARCHITECTURE}-${FLAVOUR}.squashfs
-			for memtest in tftpboot/debian-live/${ARCHITECTURE}/memtest*; do cp -f ${memtest} debian-live-${DISTRIBUTION}-${ARCHITECTURE}.$(basename ${memtest}); done || true
-			for kernel in tftpboot/debian-live/${ARCHITECTURE}/vmlinuz*; do cp -f ${kernel} debian-live-${DISTRIBUTION}-${ARCHITECTURE}.$(basename ${kernel}); done
-			for initrd in tftpboot/debian-live/${ARCHITECTURE}/initrd*; do cp ${initrd} debian-live-${DISTRIBUTION}-${ARCHITECTURE}-${FLAVOUR}.$(basename ${initrd}); done
-		fi
-
-		if [ "${SOURCE}" = "true" ]
-		then
-			lb config --source true
-
-			lb source 2>&1 | tee debian-live-${DISTRIBUTION}-source-${FLAVOUR}.log
-
-			mv source.debian.tar.gz debian-live-${DISTRIBUTION}-source-${FLAVOUR}.debian.tar.gz
-			mv source.debian.list debian-live-${DISTRIBUTION}-source-${FLAVOUR}.debian.tar.gz.list
-			mv source.debian-live.tar.gz debian-live-${DISTRIBUTION}-source-${FLAVOUR}.debian-live.tar.gz
-			mv source.debian-live.list debian-live-${DISTRIBUTION}-source-${FLAVOUR}.debian-live.tar.gz.list
-		fi
-	done
-done
diff --git a/functions/common.sh b/functions/common.sh
index 2d45aa3..d3ae601 100755
--- a/functions/common.sh
+++ b/functions/common.sh
@@ -9,7 +9,7 @@
 
 
 PACKAGE="live-build"
-VERSION="2.0.1-1"
+VERSION="2.0.3-1"
 CONFIG_VERSION="$(echo ${VERSION} | awk -F- '{ print $1 }')"
 
 PATH="${PWD}/auto/scripts:${PATH}"
diff --git a/manpages/de/lb.de.1 b/manpages/de/lb.de.1
index fdc7aea..43ac147 100644
--- a/manpages/de/lb.de.1
+++ b/manpages/de/lb.de.1
@@ -3,24 +3,24 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
-\fBlh\fP \- Wrapper für live\-build Programme
+\fBlb\fP \- Wrapper für live\-build Programme
 
 .SH ÜBERSICHT
-\fBlh\fP BEFEHL [BEFEHL_OPTIONEN]
+\fBlb\fP BEFEHL [BEFEHL_OPTIONEN]
 .PP
-\fBlh\fP [\fIlive\-build\ Optionen\fP]
+\fBlb\fP [\fIlive\-build\ Optionen\fP]
 
 .SH BESCHREIBUNG
-\fBlh\fP ist ein high\-level Befehl ("porcelain") von \fIlive\-build\fP(7), der
+\fBlb\fP ist ein high\-level Befehl ("porcelain") von \fIlive\-build\fP(7), der
 Debian Live Tool Suite.
 .PP
 
 .\" FIXME
 .SH OPTIONEN
-\fBlh\fP hat keine spezifischen Optionen aber unterstützt alle allgemeinen
+\fBlb\fP hat keine spezifischen Optionen aber unterstützt alle allgemeinen
 live\-build Optionen. Siehe \fIlive\-build\fP(7) für eine vollständige Liste
 aller allgemeinen live\-build Optionen.
 
diff --git a/manpages/de/lb_binary.de.1 b/manpages/de/lb_binary.de.1
index 07cce81..fbeeb8d 100644
--- a/manpages/de/lb_binary.de.1
+++ b/manpages/de/lb_binary.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb binary\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lb_binary_checksums.de.1 b/manpages/de/lb_binary_checksums.de.1
index fa86bcd..7d0cbc8 100644
--- a/manpages/de/lb_binary_checksums.de.1
+++ b/manpages/de/lb_binary_checksums.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb binary_checksums\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lb_binary_chroot.de.1 b/manpages/de/lb_binary_chroot.de.1
index 4939177..dab5426 100644
--- a/manpages/de/lb_binary_chroot.de.1
+++ b/manpages/de/lb_binary_chroot.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb binary_chroot\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lb_binary_debian-installer.de.1 b/manpages/de/lb_binary_debian-installer.de.1
index 1ba5a1e..e8c5358 100644
--- a/manpages/de/lb_binary_debian-installer.de.1
+++ b/manpages/de/lb_binary_debian-installer.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb binary_debian\-installer\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lb_binary_disk.de.1 b/manpages/de/lb_binary_disk.de.1
index 571a38b..fde7054 100644
--- a/manpages/de/lb_binary_disk.de.1
+++ b/manpages/de/lb_binary_disk.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb binary_disk\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lb_binary_encryption.de.1 b/manpages/de/lb_binary_encryption.de.1
index 6691f82..c628652 100644
--- a/manpages/de/lb_binary_encryption.de.1
+++ b/manpages/de/lb_binary_encryption.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb binary_encryption\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lb_binary_grub.de.1 b/manpages/de/lb_binary_grub.de.1
index 656a40c..a4af333 100644
--- a/manpages/de/lb_binary_grub.de.1
+++ b/manpages/de/lb_binary_grub.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb binary_grub\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lb_binary_grub2.de.1 b/manpages/de/lb_binary_grub2.de.1
index b4ffa04..97bd512 100644
--- a/manpages/de/lb_binary_grub2.de.1
+++ b/manpages/de/lb_binary_grub2.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb binary_grub2\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lb_binary_includes.de.1 b/manpages/de/lb_binary_includes.de.1
index 525f3aa..a98951a 100644
--- a/manpages/de/lb_binary_includes.de.1
+++ b/manpages/de/lb_binary_includes.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb binary_includes\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lb_binary_iso.de.1 b/manpages/de/lb_binary_iso.de.1
index eb7fa7c..c4e2e92 100644
--- a/manpages/de/lb_binary_iso.de.1
+++ b/manpages/de/lb_binary_iso.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb binary_iso\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lb_binary_linux-image.de.1 b/manpages/de/lb_binary_linux-image.de.1
index 5c917e9..88938d0 100644
--- a/manpages/de/lb_binary_linux-image.de.1
+++ b/manpages/de/lb_binary_linux-image.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb binary_linux\-image\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lb_binary_local-hooks.de.1 b/manpages/de/lb_binary_local-hooks.de.1
index f385817..9af47d8 100644
--- a/manpages/de/lb_binary_local-hooks.de.1
+++ b/manpages/de/lb_binary_local-hooks.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb binary_local\-hooks\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lb_binary_local-includes.de.1 b/manpages/de/lb_binary_local-includes.de.1
index bdbedb7..201a818 100644
--- a/manpages/de/lb_binary_local-includes.de.1
+++ b/manpages/de/lb_binary_local-includes.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb binary_local\-includes\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lb_binary_local-packageslists.de.1 b/manpages/de/lb_binary_local-packageslists.de.1
index 24d446a..eb9b48c 100644
--- a/manpages/de/lb_binary_local-packageslists.de.1
+++ b/manpages/de/lb_binary_local-packageslists.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb binary_local\-packageslists\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lb_binary_manifest.de.1 b/manpages/de/lb_binary_manifest.de.1
index 0d49d44..36dc49d 100644
--- a/manpages/de/lb_binary_manifest.de.1
+++ b/manpages/de/lb_binary_manifest.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb binary_manifest\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lb_binary_memtest.de.1 b/manpages/de/lb_binary_memtest.de.1
index f450b37..d7f55d8 100644
--- a/manpages/de/lb_binary_memtest.de.1
+++ b/manpages/de/lb_binary_memtest.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb binary_memtest\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lb_binary_net.de.1 b/manpages/de/lb_binary_net.de.1
index 4be24af..4578caa 100644
--- a/manpages/de/lb_binary_net.de.1
+++ b/manpages/de/lb_binary_net.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb binary_net\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lb_binary_rootfs.de.1 b/manpages/de/lb_binary_rootfs.de.1
index 2b2478d..285b18f 100644
--- a/manpages/de/lb_binary_rootfs.de.1
+++ b/manpages/de/lb_binary_rootfs.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb binary_rootfs\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lb_binary_silo.de.1 b/manpages/de/lb_binary_silo.de.1
index e05d2df..a11b98a 100644
--- a/manpages/de/lb_binary_silo.de.1
+++ b/manpages/de/lb_binary_silo.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb binary_silo\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lb_binary_syslinux.de.1 b/manpages/de/lb_binary_syslinux.de.1
index 23a9f2b..e3328f5 100644
--- a/manpages/de/lb_binary_syslinux.de.1
+++ b/manpages/de/lb_binary_syslinux.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb binary_syslinux\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lb_binary_tar.de.1 b/manpages/de/lb_binary_tar.de.1
index 0284624..c08d93c 100644
--- a/manpages/de/lb_binary_tar.de.1
+++ b/manpages/de/lb_binary_tar.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb binary_tar\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lb_binary_usb.de.1 b/manpages/de/lb_binary_usb.de.1
index 1348170..35f060f 100644
--- a/manpages/de/lb_binary_usb.de.1
+++ b/manpages/de/lb_binary_usb.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb binary_usb\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lb_binary_virtual-hdd.de.1 b/manpages/de/lb_binary_virtual-hdd.de.1
index 3a5e28c..2d8721e 100644
--- a/manpages/de/lb_binary_virtual-hdd.de.1
+++ b/manpages/de/lb_binary_virtual-hdd.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb binary_virtual\-hdd\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lb_binary_win32-loader.de.1 b/manpages/de/lb_binary_win32-loader.de.1
index 57f943d..0c5490e 100644
--- a/manpages/de/lb_binary_win32-loader.de.1
+++ b/manpages/de/lb_binary_win32-loader.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb binary_win32\-loader\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lb_binary_yaboot.de.1 b/manpages/de/lb_binary_yaboot.de.1
index 9261b49..a64a938 100644
--- a/manpages/de/lb_binary_yaboot.de.1
+++ b/manpages/de/lb_binary_yaboot.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb binary_yaboot\fP \- Erstellt die "binary" Stufe
diff --git a/manpages/de/lb_bootstrap.de.1 b/manpages/de/lb_bootstrap.de.1
index 3b2d5fc..dfa5405 100644
--- a/manpages/de/lb_bootstrap.de.1
+++ b/manpages/de/lb_bootstrap.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb bootstrap\fP \- Erstellt die "bootstrap" Stufe
diff --git a/manpages/de/lb_bootstrap_cache.de.1 b/manpages/de/lb_bootstrap_cache.de.1
index a233f0a..0361ea3 100644
--- a/manpages/de/lb_bootstrap_cache.de.1
+++ b/manpages/de/lb_bootstrap_cache.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb bootstrap_cache\fP \- Erstellt die "bootstrap" Stufe
diff --git a/manpages/de/lb_bootstrap_cdebootstrap.de.1 b/manpages/de/lb_bootstrap_cdebootstrap.de.1
index 354c3a7..c52930f 100644
--- a/manpages/de/lb_bootstrap_cdebootstrap.de.1
+++ b/manpages/de/lb_bootstrap_cdebootstrap.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb bootstrap_cdebootstrap\fP \- Erstellt die "bootstrap" Stufe
diff --git a/manpages/de/lb_bootstrap_copy.de.1 b/manpages/de/lb_bootstrap_copy.de.1
index ae184de..524b0c6 100644
--- a/manpages/de/lb_bootstrap_copy.de.1
+++ b/manpages/de/lb_bootstrap_copy.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb bootstrap_copy\fP \- Erstellt die "bootstrap" Stufe
diff --git a/manpages/de/lb_bootstrap_debootstrap.de.1 b/manpages/de/lb_bootstrap_debootstrap.de.1
index e672926..a73ebcf 100644
--- a/manpages/de/lb_bootstrap_debootstrap.de.1
+++ b/manpages/de/lb_bootstrap_debootstrap.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb bootstrap_debootstrap\fP \- Erstellt die "bootstrap" Stufe
diff --git a/manpages/de/lb_build.de.1 b/manpages/de/lb_build.de.1
index 7cd3e48..be6bb43 100644
--- a/manpages/de/lb_build.de.1
+++ b/manpages/de/lb_build.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb build\fP \- Erstellt die "bootstrap", "chroot", "binary" und "source"
diff --git a/manpages/de/lb_chroot.de.1 b/manpages/de/lb_chroot.de.1
index 9927dd3..8dc95b0 100644
--- a/manpages/de/lb_chroot.de.1
+++ b/manpages/de/lb_chroot.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb chroot\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lb_chroot_apt.de.1 b/manpages/de/lb_chroot_apt.de.1
index 7a1d760..661c0e2 100644
--- a/manpages/de/lb_chroot_apt.de.1
+++ b/manpages/de/lb_chroot_apt.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb chroot_apt\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lb_chroot_cache.de.1 b/manpages/de/lb_chroot_cache.de.1
index 69fcaf3..4f834f4 100644
--- a/manpages/de/lb_chroot_cache.de.1
+++ b/manpages/de/lb_chroot_cache.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb chroot_cache\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lb_chroot_debianchroot.de.1 b/manpages/de/lb_chroot_debianchroot.de.1
index 10624c3..c5bdf77 100644
--- a/manpages/de/lb_chroot_debianchroot.de.1
+++ b/manpages/de/lb_chroot_debianchroot.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb chroot_debianchroot\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lb_chroot_devpts.de.1 b/manpages/de/lb_chroot_devpts.de.1
index ed75b02..0afb081 100644
--- a/manpages/de/lb_chroot_devpts.de.1
+++ b/manpages/de/lb_chroot_devpts.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb chroot_devpts\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lb_chroot_dpkg.de.1 b/manpages/de/lb_chroot_dpkg.de.1
index 4a9b71b..42e4717 100644
--- a/manpages/de/lb_chroot_dpkg.de.1
+++ b/manpages/de/lb_chroot_dpkg.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb chroot_dpkg\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lb_chroot_hacks.de.1 b/manpages/de/lb_chroot_hacks.de.1
index fb48f7b..a57aa62 100644
--- a/manpages/de/lb_chroot_hacks.de.1
+++ b/manpages/de/lb_chroot_hacks.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb chroot_hacks\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lb_chroot_hooks.de.1 b/manpages/de/lb_chroot_hooks.de.1
index 50d9638..6ca69e4 100644
--- a/manpages/de/lb_chroot_hooks.de.1
+++ b/manpages/de/lb_chroot_hooks.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb chroot_hooks\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lb_chroot_hostname.de.1 b/manpages/de/lb_chroot_hostname.de.1
index 335d34c..68ca2f9 100644
--- a/manpages/de/lb_chroot_hostname.de.1
+++ b/manpages/de/lb_chroot_hostname.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb chroot_hostname\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lb_chroot_hosts.de.1 b/manpages/de/lb_chroot_hosts.de.1
index 590717d..bbdfd07 100644
--- a/manpages/de/lb_chroot_hosts.de.1
+++ b/manpages/de/lb_chroot_hosts.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb chroot_hosts\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lb_chroot_install-packages.de.1 b/manpages/de/lb_chroot_install-packages.de.1
index b220e15..bb569ac 100644
--- a/manpages/de/lb_chroot_install-packages.de.1
+++ b/manpages/de/lb_chroot_install-packages.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb chroot_install\-packages\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lb_chroot_interactive.de.1 b/manpages/de/lb_chroot_interactive.de.1
index 0fc7bfc..664bb6a 100644
--- a/manpages/de/lb_chroot_interactive.de.1
+++ b/manpages/de/lb_chroot_interactive.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb chroot_interactive\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lb_chroot_linux-image.de.1 b/manpages/de/lb_chroot_linux-image.de.1
index ed83582..40d1052 100644
--- a/manpages/de/lb_chroot_linux-image.de.1
+++ b/manpages/de/lb_chroot_linux-image.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb chroot_linux\-image\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lb_chroot_local-hooks.de.1 b/manpages/de/lb_chroot_local-hooks.de.1
index 192adb6..d38c75e 100644
--- a/manpages/de/lb_chroot_local-hooks.de.1
+++ b/manpages/de/lb_chroot_local-hooks.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb chroot_local\-hooks\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lb_chroot_local-includes.de.1 b/manpages/de/lb_chroot_local-includes.de.1
index 872bd49..3baacb4 100644
--- a/manpages/de/lb_chroot_local-includes.de.1
+++ b/manpages/de/lb_chroot_local-includes.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb chroot_local\-includes\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lb_chroot_local-packages.de.1 b/manpages/de/lb_chroot_local-packages.de.1
index 0db88e2..1f2e090 100644
--- a/manpages/de/lb_chroot_local-packages.de.1
+++ b/manpages/de/lb_chroot_local-packages.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb chroot_local\-packages\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lb_chroot_local-packageslists.de.1 b/manpages/de/lb_chroot_local-packageslists.de.1
index 92938aa..db088a0 100644
--- a/manpages/de/lb_chroot_local-packageslists.de.1
+++ b/manpages/de/lb_chroot_local-packageslists.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb chroot_local\-packageslists\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lb_chroot_local-patches.de.1 b/manpages/de/lb_chroot_local-patches.de.1
index 364ea29..33d8cae 100644
--- a/manpages/de/lb_chroot_local-patches.de.1
+++ b/manpages/de/lb_chroot_local-patches.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb chroot_local\-patches\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lb_chroot_local-preseed.de.1 b/manpages/de/lb_chroot_local-preseed.de.1
index 3eefe1b..7c6a028 100644
--- a/manpages/de/lb_chroot_local-preseed.de.1
+++ b/manpages/de/lb_chroot_local-preseed.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb chroot_local\-preseed\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lb_chroot_localization.de.1 b/manpages/de/lb_chroot_localization.de.1
index babb01f..f4dbb1c 100644
--- a/manpages/de/lb_chroot_localization.de.1
+++ b/manpages/de/lb_chroot_localization.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb chroot_localization\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lb_chroot_packages.de.1 b/manpages/de/lb_chroot_packages.de.1
index b58ff93..d2d59a6 100644
--- a/manpages/de/lb_chroot_packages.de.1
+++ b/manpages/de/lb_chroot_packages.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb chroot_packages\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lb_chroot_packageslists.de.1 b/manpages/de/lb_chroot_packageslists.de.1
index 5a9c697..e97f8cb 100644
--- a/manpages/de/lb_chroot_packageslists.de.1
+++ b/manpages/de/lb_chroot_packageslists.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb chroot_packageslists\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lb_chroot_preseed.de.1 b/manpages/de/lb_chroot_preseed.de.1
index 57a1147..03a4e0c 100644
--- a/manpages/de/lb_chroot_preseed.de.1
+++ b/manpages/de/lb_chroot_preseed.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb chroot_preseed\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lb_chroot_proc.de.1 b/manpages/de/lb_chroot_proc.de.1
index ad006f6..f4601ab 100644
--- a/manpages/de/lb_chroot_proc.de.1
+++ b/manpages/de/lb_chroot_proc.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb chroot_proc\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lb_chroot_resolv.de.1 b/manpages/de/lb_chroot_resolv.de.1
index f70f350..361b634 100644
--- a/manpages/de/lb_chroot_resolv.de.1
+++ b/manpages/de/lb_chroot_resolv.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb chroot_resolv\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lb_chroot_selinuxfs.de.1 b/manpages/de/lb_chroot_selinuxfs.de.1
index 4190426..a47e63d 100644
--- a/manpages/de/lb_chroot_selinuxfs.de.1
+++ b/manpages/de/lb_chroot_selinuxfs.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb chroot_selinuxfs\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lb_chroot_sources.de.1 b/manpages/de/lb_chroot_sources.de.1
index 8f70d99..3de3315 100644
--- a/manpages/de/lb_chroot_sources.de.1
+++ b/manpages/de/lb_chroot_sources.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb chroot_sources\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lb_chroot_symlinks.de.1 b/manpages/de/lb_chroot_symlinks.de.1
index 6f9de07..0e6b639 100644
--- a/manpages/de/lb_chroot_symlinks.de.1
+++ b/manpages/de/lb_chroot_symlinks.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb chroot_symlinks\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lb_chroot_sysfs.de.1 b/manpages/de/lb_chroot_sysfs.de.1
index 0a57c7f..1d3c987 100644
--- a/manpages/de/lb_chroot_sysfs.de.1
+++ b/manpages/de/lb_chroot_sysfs.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb chroot_sysfs\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lb_chroot_sysv-rc.de.1 b/manpages/de/lb_chroot_sysv-rc.de.1
index b4c4901..2501533 100644
--- a/manpages/de/lb_chroot_sysv-rc.de.1
+++ b/manpages/de/lb_chroot_sysv-rc.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb chroot_sysv\-rc\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lb_chroot_sysvinit.de.1 b/manpages/de/lb_chroot_sysvinit.de.1
index afcddf5..47c215b 100644
--- a/manpages/de/lb_chroot_sysvinit.de.1
+++ b/manpages/de/lb_chroot_sysvinit.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb chroot_sysvinit\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lb_chroot_tasks.de.1 b/manpages/de/lb_chroot_tasks.de.1
index 44e3f7e..a1dde8e 100644
--- a/manpages/de/lb_chroot_tasks.de.1
+++ b/manpages/de/lb_chroot_tasks.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb chroot_tasks\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lb_chroot_upstart.de.1 b/manpages/de/lb_chroot_upstart.de.1
index e9638a2..af8235e 100644
--- a/manpages/de/lb_chroot_upstart.de.1
+++ b/manpages/de/lb_chroot_upstart.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb chroot_upstart\fP \- Erstellt die "chroot" Stufe
diff --git a/manpages/de/lb_clean.de.1 b/manpages/de/lb_clean.de.1
index 8c5b4a1..c053e01 100644
--- a/manpages/de/lb_clean.de.1
+++ b/manpages/de/lb_clean.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb clean\fP \- Räumt das Arbeitsverzeichnis auf
diff --git a/manpages/de/lb_config.de.1 b/manpages/de/lb_config.de.1
index c1b885c..30eb757 100644
--- a/manpages/de/lb_config.de.1
+++ b/manpages/de/lb_config.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb config\fP \- Erstellen des config Verzeichnisses
diff --git a/manpages/de/lb_local.de.1 b/manpages/de/lb_local.de.1
index 2887c31..b836574 100644
--- a/manpages/de/lb_local.de.1
+++ b/manpages/de/lb_local.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb local\fP \- Wrapper für lokale live\-build Programme
diff --git a/manpages/de/lb_source.de.1 b/manpages/de/lb_source.de.1
index 01561db..41eb454 100644
--- a/manpages/de/lb_source.de.1
+++ b/manpages/de/lb_source.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb source\fP \- Erstellt die "source" Stufe
diff --git a/manpages/de/lb_source_checksums.de.1 b/manpages/de/lb_source_checksums.de.1
index d348abc..0b37308 100644
--- a/manpages/de/lb_source_checksums.de.1
+++ b/manpages/de/lb_source_checksums.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb source_checksums\fP \- Erstellt die "source" Stufe
diff --git a/manpages/de/lb_source_debian-live.de.1 b/manpages/de/lb_source_debian-live.de.1
index 0c1a435..0cabe3a 100644
--- a/manpages/de/lb_source_debian-live.de.1
+++ b/manpages/de/lb_source_debian-live.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb source_debian\-live\fP \- Erstellt die "source" Stufe
diff --git a/manpages/de/lb_source_debian.de.1 b/manpages/de/lb_source_debian.de.1
index 031df1e..69dbea2 100644
--- a/manpages/de/lb_source_debian.de.1
+++ b/manpages/de/lb_source_debian.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb source_debian\fP \- Erstellt die "source" Stufe
diff --git a/manpages/de/lb_source_disk.de.1 b/manpages/de/lb_source_disk.de.1
index db076c3..c6e5480 100644
--- a/manpages/de/lb_source_disk.de.1
+++ b/manpages/de/lb_source_disk.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb source_disk\fP \- Erstellt die "source" Stufe
diff --git a/manpages/de/lb_source_iso.de.1 b/manpages/de/lb_source_iso.de.1
index eebb054..3a6a029 100644
--- a/manpages/de/lb_source_iso.de.1
+++ b/manpages/de/lb_source_iso.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb source_iso\fP \- Erstellt die "source" Stufe
diff --git a/manpages/de/lb_source_net.de.1 b/manpages/de/lb_source_net.de.1
index ecffa2b..e3bdc1c 100644
--- a/manpages/de/lb_source_net.de.1
+++ b/manpages/de/lb_source_net.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb source_net\fP \- Erstellt die "source" Stufe
diff --git a/manpages/de/lb_source_tar.de.1 b/manpages/de/lb_source_tar.de.1
index e703bd5..feb1e0a 100644
--- a/manpages/de/lb_source_tar.de.1
+++ b/manpages/de/lb_source_tar.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb source_tar\fP \- Erstellt die "source" Stufe
diff --git a/manpages/de/lb_source_usb.de.1 b/manpages/de/lb_source_usb.de.1
index 07a78e0..546b103 100644
--- a/manpages/de/lb_source_usb.de.1
+++ b/manpages/de/lb_source_usb.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb source_usb\fP \- Erstellt die "source" Stufe
diff --git a/manpages/de/lb_source_virtual-hdd.de.1 b/manpages/de/lb_source_virtual-hdd.de.1
index c02b6c9..fd07e46 100644
--- a/manpages/de/lb_source_virtual-hdd.de.1
+++ b/manpages/de/lb_source_virtual-hdd.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb source_virtual\-hdd\fP \- Erstellt die "source" Stufe
diff --git a/manpages/de/lb_testroot.de.1 b/manpages/de/lb_testroot.de.1
index d4c935b..ed79e1f 100644
--- a/manpages/de/lb_testroot.de.1
+++ b/manpages/de/lb_testroot.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 1 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlb testroot\fP \- stellt sicher, dass ein System als root erstellt wird
diff --git a/manpages/de/live-build.de.7 b/manpages/de/live-build.de.7
index 347c42b..df4245b 100644
--- a/manpages/de/live-build.de.7
+++ b/manpages/de/live-build.de.7
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 7 02.10.2010 2.0.2 "Debian Live Projekt"
+.TH LIVE\-BUILD 7 12.10.2010 2.0.3 "Debian Live Projekt"
 
 .SH NAME
 \fBlive\-build\fP \- die Debian Live Tool Suite
@@ -83,7 +83,7 @@ create the optional fourth stage by generating a source image
 .IP \fBlb_clean\fP(1) 4
 clean up system build directories
 .SS "Ancillary Commands"
-.IP \fBlh\fP(1) 4
+.IP \fBlb\fP(1) 4
 generic live\-build wrapper
 .IP \fBlb_build\fP(1) 4
 alias for all stages
diff --git a/manpages/en/lb.1 b/manpages/en/lb.1
index a73cba9..267014f 100644
--- a/manpages/en/lb.1
+++ b/manpages/en/lb.1
@@ -1,20 +1,20 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
-\fBlh\fR \- wrapper for live\-build programs
+\fBlb\fR \- wrapper for live\-build programs
 
 .SH SYNOPSIS
-\fBlh\fR COMMAND [COMMAND_OPTIONS]
+\fBlb\fR COMMAND [COMMAND_OPTIONS]
 .PP
-\fBlh\fR [\fIlive\-build\ options\fR]
+\fBlb\fR [\fIlive\-build\ options\fR]
 
 .SH DESCRIPTION
-\fBlh\fR is a high\-level command (porcelain) of \fIlive\-build\fR(7), the Debian Live tool suite.
+\fBlb\fR is a high\-level command (porcelain) of \fIlive\-build\fR(7), the Debian Live tool suite.
 .PP
 .\" FIXME
 
 .SH OPTIONS
-\fBlh\fR has no specific options but understands all generic live\-build options. See \fIlive\-build\fR(7) for a complete list of all generic live\-build options.
+\fBlb\fR has no specific options but understands all generic live\-build options. See \fIlive\-build\fR(7) for a complete list of all generic live\-build options.
 
 .SH FILES
 .IP "\fBnone\fR" 4
diff --git a/manpages/en/lb_binary.1 b/manpages/en/lb_binary.1
index e4d4e60..c0e2032 100644
--- a/manpages/en/lb_binary.1
+++ b/manpages/en/lb_binary.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb binary\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_checksums.1 b/manpages/en/lb_binary_checksums.1
index 913244c..5ecdda9 100644
--- a/manpages/en/lb_binary_checksums.1
+++ b/manpages/en/lb_binary_checksums.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_checksums\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_chroot.1 b/manpages/en/lb_binary_chroot.1
index bdc2dce..668536c 100644
--- a/manpages/en/lb_binary_chroot.1
+++ b/manpages/en/lb_binary_chroot.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_chroot\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_debian-installer.1 b/manpages/en/lb_binary_debian-installer.1
index ebec13d..9ca3418 100644
--- a/manpages/en/lb_binary_debian-installer.1
+++ b/manpages/en/lb_binary_debian-installer.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_debian\-installer\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_disk.1 b/manpages/en/lb_binary_disk.1
index 6461e0a..02c99b3 100644
--- a/manpages/en/lb_binary_disk.1
+++ b/manpages/en/lb_binary_disk.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_disk\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_encryption.1 b/manpages/en/lb_binary_encryption.1
index 1121983..d49c3ea 100644
--- a/manpages/en/lb_binary_encryption.1
+++ b/manpages/en/lb_binary_encryption.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_encryption\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_grub.1 b/manpages/en/lb_binary_grub.1
index 9167b79..af32453 100644
--- a/manpages/en/lb_binary_grub.1
+++ b/manpages/en/lb_binary_grub.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_grub\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_grub2.1 b/manpages/en/lb_binary_grub2.1
index 52e6ee8..c5f95c0 100644
--- a/manpages/en/lb_binary_grub2.1
+++ b/manpages/en/lb_binary_grub2.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_grub2\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_includes.1 b/manpages/en/lb_binary_includes.1
index ae34a42..0d43f0c 100644
--- a/manpages/en/lb_binary_includes.1
+++ b/manpages/en/lb_binary_includes.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_includes\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_iso.1 b/manpages/en/lb_binary_iso.1
index 597e356..2f5ad01 100644
--- a/manpages/en/lb_binary_iso.1
+++ b/manpages/en/lb_binary_iso.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_iso\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_linux-image.1 b/manpages/en/lb_binary_linux-image.1
index 38b6a11..27ba145 100644
--- a/manpages/en/lb_binary_linux-image.1
+++ b/manpages/en/lb_binary_linux-image.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_linux\-image\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_local-hooks.1 b/manpages/en/lb_binary_local-hooks.1
index 68d0afc..aceb465 100644
--- a/manpages/en/lb_binary_local-hooks.1
+++ b/manpages/en/lb_binary_local-hooks.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_local\-hooks\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_local-includes.1 b/manpages/en/lb_binary_local-includes.1
index 6a251c1..3fb3e0e 100644
--- a/manpages/en/lb_binary_local-includes.1
+++ b/manpages/en/lb_binary_local-includes.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_local\-includes\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_local-packageslists.1 b/manpages/en/lb_binary_local-packageslists.1
index aee0d7a..e2d9bfb 100644
--- a/manpages/en/lb_binary_local-packageslists.1
+++ b/manpages/en/lb_binary_local-packageslists.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_local-packageslists\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_manifest.1 b/manpages/en/lb_binary_manifest.1
index 3dfb266..7f4590f 100644
--- a/manpages/en/lb_binary_manifest.1
+++ b/manpages/en/lb_binary_manifest.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_manifest\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_memtest.1 b/manpages/en/lb_binary_memtest.1
index 717fb10..6d9aafd 100644
--- a/manpages/en/lb_binary_memtest.1
+++ b/manpages/en/lb_binary_memtest.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_memtest\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_net.1 b/manpages/en/lb_binary_net.1
index bb6f59e..91289d0 100644
--- a/manpages/en/lb_binary_net.1
+++ b/manpages/en/lb_binary_net.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_net\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_rootfs.1 b/manpages/en/lb_binary_rootfs.1
index b4e0dae..eaa5bcd 100644
--- a/manpages/en/lb_binary_rootfs.1
+++ b/manpages/en/lb_binary_rootfs.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_rootfs\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_silo.1 b/manpages/en/lb_binary_silo.1
index 9ad146e..04280f5 100644
--- a/manpages/en/lb_binary_silo.1
+++ b/manpages/en/lb_binary_silo.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_silo\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_syslinux.1 b/manpages/en/lb_binary_syslinux.1
index 663b09a..75a2bf5 100644
--- a/manpages/en/lb_binary_syslinux.1
+++ b/manpages/en/lb_binary_syslinux.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_syslinux\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_tar.1 b/manpages/en/lb_binary_tar.1
index 73e02da..f4fd968 100644
--- a/manpages/en/lb_binary_tar.1
+++ b/manpages/en/lb_binary_tar.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_tar\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_usb.1 b/manpages/en/lb_binary_usb.1
index 78ddac6..207641e 100644
--- a/manpages/en/lb_binary_usb.1
+++ b/manpages/en/lb_binary_usb.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_usb\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_virtual-hdd.1 b/manpages/en/lb_binary_virtual-hdd.1
index a251c3d..b06ab57 100644
--- a/manpages/en/lb_binary_virtual-hdd.1
+++ b/manpages/en/lb_binary_virtual-hdd.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_virtual\-hdd\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_win32-loader.1 b/manpages/en/lb_binary_win32-loader.1
index 4fdeaec..4e31706 100644
--- a/manpages/en/lb_binary_win32-loader.1
+++ b/manpages/en/lb_binary_win32-loader.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_win32\-loader\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_yaboot.1 b/manpages/en/lb_binary_yaboot.1
index b3ca91d..a617e1c 100644
--- a/manpages/en/lb_binary_yaboot.1
+++ b/manpages/en/lb_binary_yaboot.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_yaboot\fR \- Complete the binary stage
diff --git a/manpages/en/lb_bootstrap.1 b/manpages/en/lb_bootstrap.1
index 6ee81d7..ff5d6c7 100644
--- a/manpages/en/lb_bootstrap.1
+++ b/manpages/en/lb_bootstrap.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb bootstrap\fR \- Complete the bootstrap stage
diff --git a/manpages/en/lb_bootstrap_cache.1 b/manpages/en/lb_bootstrap_cache.1
index e5e81c9..71234f5 100644
--- a/manpages/en/lb_bootstrap_cache.1
+++ b/manpages/en/lb_bootstrap_cache.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb bootstrap_cache\fR \- Complete the bootstrap stage
diff --git a/manpages/en/lb_bootstrap_cdebootstrap.1 b/manpages/en/lb_bootstrap_cdebootstrap.1
index 53db7c0..dea419b 100644
--- a/manpages/en/lb_bootstrap_cdebootstrap.1
+++ b/manpages/en/lb_bootstrap_cdebootstrap.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb bootstrap_cdebootstrap\fR \- Complete the bootstrap stage
diff --git a/manpages/en/lb_bootstrap_copy.1 b/manpages/en/lb_bootstrap_copy.1
index 5cd5ad3..d3e56e8 100644
--- a/manpages/en/lb_bootstrap_copy.1
+++ b/manpages/en/lb_bootstrap_copy.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb bootstrap_copy\fR \- Complete the bootstrap stage
diff --git a/manpages/en/lb_bootstrap_debootstrap.1 b/manpages/en/lb_bootstrap_debootstrap.1
index fd03bf5..7ce1f6d 100644
--- a/manpages/en/lb_bootstrap_debootstrap.1
+++ b/manpages/en/lb_bootstrap_debootstrap.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb bootstrap_debootstrap\fR \- Complete the bootstrap stage
diff --git a/manpages/en/lb_build.1 b/manpages/en/lb_build.1
index 6057c7e..607e4a0 100644
--- a/manpages/en/lb_build.1
+++ b/manpages/en/lb_build.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb build\fR \- Complete the bootstrap, chroot, binary, and source stages
diff --git a/manpages/en/lb_chroot.1 b/manpages/en/lb_chroot.1
index af36581..bf6352d 100644
--- a/manpages/en/lb_chroot.1
+++ b/manpages/en/lb_chroot.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_apt.1 b/manpages/en/lb_chroot_apt.1
index 4ffcc13..16080c8 100644
--- a/manpages/en/lb_chroot_apt.1
+++ b/manpages/en/lb_chroot_apt.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_apt\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_cache.1 b/manpages/en/lb_chroot_cache.1
index a71e1e6..8c4bad2 100644
--- a/manpages/en/lb_chroot_cache.1
+++ b/manpages/en/lb_chroot_cache.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_cache\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_debianchroot.1 b/manpages/en/lb_chroot_debianchroot.1
index 419a74a..fa99d50 100644
--- a/manpages/en/lb_chroot_debianchroot.1
+++ b/manpages/en/lb_chroot_debianchroot.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_debianchroot\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_devpts.1 b/manpages/en/lb_chroot_devpts.1
index ae6c903..c48f832 100644
--- a/manpages/en/lb_chroot_devpts.1
+++ b/manpages/en/lb_chroot_devpts.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_devpts\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_dpkg.1 b/manpages/en/lb_chroot_dpkg.1
index 54e4f4e..967ca41 100644
--- a/manpages/en/lb_chroot_dpkg.1
+++ b/manpages/en/lb_chroot_dpkg.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_dpkg\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_hacks.1 b/manpages/en/lb_chroot_hacks.1
index 1d96d9c..7cf3cad 100644
--- a/manpages/en/lb_chroot_hacks.1
+++ b/manpages/en/lb_chroot_hacks.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_hacks\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_hooks.1 b/manpages/en/lb_chroot_hooks.1
index 71f1226..f8e8e1e 100644
--- a/manpages/en/lb_chroot_hooks.1
+++ b/manpages/en/lb_chroot_hooks.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_hooks\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_hostname.1 b/manpages/en/lb_chroot_hostname.1
index 5e23d90..dcbdf56 100644
--- a/manpages/en/lb_chroot_hostname.1
+++ b/manpages/en/lb_chroot_hostname.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_hostname\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_hosts.1 b/manpages/en/lb_chroot_hosts.1
index cf5d152..2b965ac 100644
--- a/manpages/en/lb_chroot_hosts.1
+++ b/manpages/en/lb_chroot_hosts.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_hosts\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_install-packages.1 b/manpages/en/lb_chroot_install-packages.1
index 7c9f8fa..a5c6af4 100644
--- a/manpages/en/lb_chroot_install-packages.1
+++ b/manpages/en/lb_chroot_install-packages.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_install\-packages\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_interactive.1 b/manpages/en/lb_chroot_interactive.1
index ea235c0..d65fc26 100644
--- a/manpages/en/lb_chroot_interactive.1
+++ b/manpages/en/lb_chroot_interactive.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_interactive\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_linux-image.1 b/manpages/en/lb_chroot_linux-image.1
index 3d231a4..d38e1a0 100644
--- a/manpages/en/lb_chroot_linux-image.1
+++ b/manpages/en/lb_chroot_linux-image.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_linux\-image\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_local-hooks.1 b/manpages/en/lb_chroot_local-hooks.1
index 4d10ddf..5470e35 100644
--- a/manpages/en/lb_chroot_local-hooks.1
+++ b/manpages/en/lb_chroot_local-hooks.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_local\-hooks\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_local-includes.1 b/manpages/en/lb_chroot_local-includes.1
index 926d19c..d0f35b8 100644
--- a/manpages/en/lb_chroot_local-includes.1
+++ b/manpages/en/lb_chroot_local-includes.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_local\-includes\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_local-packages.1 b/manpages/en/lb_chroot_local-packages.1
index bf3d431..c526c70 100644
--- a/manpages/en/lb_chroot_local-packages.1
+++ b/manpages/en/lb_chroot_local-packages.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_local\-packages\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_local-packageslists.1 b/manpages/en/lb_chroot_local-packageslists.1
index 244ba88..b5e4f82 100644
--- a/manpages/en/lb_chroot_local-packageslists.1
+++ b/manpages/en/lb_chroot_local-packageslists.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_local\-packageslists\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_local-patches.1 b/manpages/en/lb_chroot_local-patches.1
index 1b84891..5dd8e15 100644
--- a/manpages/en/lb_chroot_local-patches.1
+++ b/manpages/en/lb_chroot_local-patches.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_local\-patches\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_local-preseed.1 b/manpages/en/lb_chroot_local-preseed.1
index 03b95ff..a1627ee 100644
--- a/manpages/en/lb_chroot_local-preseed.1
+++ b/manpages/en/lb_chroot_local-preseed.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_local\-preseed\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_localization.1 b/manpages/en/lb_chroot_localization.1
index f0704e9..fe5c4a1 100644
--- a/manpages/en/lb_chroot_localization.1
+++ b/manpages/en/lb_chroot_localization.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_localization\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_packages.1 b/manpages/en/lb_chroot_packages.1
index 0097551..ad7046c 100644
--- a/manpages/en/lb_chroot_packages.1
+++ b/manpages/en/lb_chroot_packages.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_packages\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_packageslists.1 b/manpages/en/lb_chroot_packageslists.1
index 7222a37..573930c 100644
--- a/manpages/en/lb_chroot_packageslists.1
+++ b/manpages/en/lb_chroot_packageslists.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_packageslists\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_preseed.1 b/manpages/en/lb_chroot_preseed.1
index de36276..8d32dee 100644
--- a/manpages/en/lb_chroot_preseed.1
+++ b/manpages/en/lb_chroot_preseed.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_preseed\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_proc.1 b/manpages/en/lb_chroot_proc.1
index 8d5ce6c..0060041 100644
--- a/manpages/en/lb_chroot_proc.1
+++ b/manpages/en/lb_chroot_proc.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_proc\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_resolv.1 b/manpages/en/lb_chroot_resolv.1
index c8222fa..52ab851 100644
--- a/manpages/en/lb_chroot_resolv.1
+++ b/manpages/en/lb_chroot_resolv.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_resolv\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_selinuxfs.1 b/manpages/en/lb_chroot_selinuxfs.1
index 44d84fb..d807227 100644
--- a/manpages/en/lb_chroot_selinuxfs.1
+++ b/manpages/en/lb_chroot_selinuxfs.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_selinuxfs\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_sources.1 b/manpages/en/lb_chroot_sources.1
index 4de2a05..17943d6 100644
--- a/manpages/en/lb_chroot_sources.1
+++ b/manpages/en/lb_chroot_sources.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_sources\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_symlinks.1 b/manpages/en/lb_chroot_symlinks.1
index b5efe6f..2bc4a4a 100644
--- a/manpages/en/lb_chroot_symlinks.1
+++ b/manpages/en/lb_chroot_symlinks.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_symlinks\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_sysfs.1 b/manpages/en/lb_chroot_sysfs.1
index 17ca5a4..b10da87 100644
--- a/manpages/en/lb_chroot_sysfs.1
+++ b/manpages/en/lb_chroot_sysfs.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_sysfs\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_sysv-rc.1 b/manpages/en/lb_chroot_sysv-rc.1
index e63bce8..76c4714 100644
--- a/manpages/en/lb_chroot_sysv-rc.1
+++ b/manpages/en/lb_chroot_sysv-rc.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_sysv-rc\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_sysvinit.1 b/manpages/en/lb_chroot_sysvinit.1
index 2f14e3e..ebb5299 100644
--- a/manpages/en/lb_chroot_sysvinit.1
+++ b/manpages/en/lb_chroot_sysvinit.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_sysvinit\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_tasks.1 b/manpages/en/lb_chroot_tasks.1
index 3d0045c..33a81a4 100644
--- a/manpages/en/lb_chroot_tasks.1
+++ b/manpages/en/lb_chroot_tasks.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_tasks\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_upstart.1 b/manpages/en/lb_chroot_upstart.1
index e0ad05d..5924b48 100644
--- a/manpages/en/lb_chroot_upstart.1
+++ b/manpages/en/lb_chroot_upstart.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_upstart\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_clean.1 b/manpages/en/lb_clean.1
index b201214..3600846 100644
--- a/manpages/en/lb_clean.1
+++ b/manpages/en/lb_clean.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb clean\fR \- Clean build directory
diff --git a/manpages/en/lb_config.1 b/manpages/en/lb_config.1
index fe454b9..6c4365d 100644
--- a/manpages/en/lb_config.1
+++ b/manpages/en/lb_config.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb config\fR \- Create config directory
diff --git a/manpages/en/lb_local.1 b/manpages/en/lb_local.1
index 8151a10..4ddf287 100644
--- a/manpages/en/lb_local.1
+++ b/manpages/en/lb_local.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb local\fR \- wrapper for local live\-build programs
diff --git a/manpages/en/lb_source.1 b/manpages/en/lb_source.1
index 4504d0d..0e30c78 100644
--- a/manpages/en/lb_source.1
+++ b/manpages/en/lb_source.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb source\fR \- Complete the source stage
diff --git a/manpages/en/lb_source_checksums.1 b/manpages/en/lb_source_checksums.1
index 7303753..5cf2504 100644
--- a/manpages/en/lb_source_checksums.1
+++ b/manpages/en/lb_source_checksums.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb source_checksums\fR \- Complete the source stage
diff --git a/manpages/en/lb_source_debian-live.1 b/manpages/en/lb_source_debian-live.1
index d474fe5..a2a4779 100644
--- a/manpages/en/lb_source_debian-live.1
+++ b/manpages/en/lb_source_debian-live.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb source_debian\-live\fR \- Complete the source stage
diff --git a/manpages/en/lb_source_debian.1 b/manpages/en/lb_source_debian.1
index e4227a2..e7a31c3 100644
--- a/manpages/en/lb_source_debian.1
+++ b/manpages/en/lb_source_debian.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb source_debian\fR \- Complete the source stage
diff --git a/manpages/en/lb_source_disk.1 b/manpages/en/lb_source_disk.1
index 36ecf94..5f8708a 100644
--- a/manpages/en/lb_source_disk.1
+++ b/manpages/en/lb_source_disk.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb source_disk\fR \- Complete the source stage
diff --git a/manpages/en/lb_source_iso.1 b/manpages/en/lb_source_iso.1
index b224d79..b35d6e6 100644
--- a/manpages/en/lb_source_iso.1
+++ b/manpages/en/lb_source_iso.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb source_iso\fR \- Complete the source stage
diff --git a/manpages/en/lb_source_net.1 b/manpages/en/lb_source_net.1
index 5c4f88f..a413ce1 100644
--- a/manpages/en/lb_source_net.1
+++ b/manpages/en/lb_source_net.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb source_net\fR \- Complete the source stage
diff --git a/manpages/en/lb_source_tar.1 b/manpages/en/lb_source_tar.1
index bfd18a5..fb52340 100644
--- a/manpages/en/lb_source_tar.1
+++ b/manpages/en/lb_source_tar.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb source_tar\fR \- Complete the source stage
diff --git a/manpages/en/lb_source_usb.1 b/manpages/en/lb_source_usb.1
index 9ecc769..a8f3be9 100644
--- a/manpages/en/lb_source_usb.1
+++ b/manpages/en/lb_source_usb.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb source_usb\fR \- Complete the source stage
diff --git a/manpages/en/lb_source_virtual-hdd.1 b/manpages/en/lb_source_virtual-hdd.1
index 6b11c61..01a6165 100644
--- a/manpages/en/lb_source_virtual-hdd.1
+++ b/manpages/en/lb_source_virtual-hdd.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb source_virtual\-hdd\fR \- Complete the source stage
diff --git a/manpages/en/lb_testroot.1 b/manpages/en/lb_testroot.1
index dd8b5e3..5c5197a 100644
--- a/manpages/en/lb_testroot.1
+++ b/manpages/en/lb_testroot.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 1 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlb testroot\fR \- Ensure that a system is built as root
diff --git a/manpages/en/live-build.7 b/manpages/en/live-build.7
index 006632c..a5337b2 100644
--- a/manpages/en/live-build.7
+++ b/manpages/en/live-build.7
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 7 2010\-10\-02 2.0.2 "Debian Live Project"
+.TH LIVE\-BUILD 7 2010\-10\-12 2.0.3 "Debian Live Project"
 
 .SH NAME
 \fBlive\-build\fR \- the Debian Live tool suite
@@ -68,7 +68,7 @@ create the optional fourth stage by generating a source image
 .IP "\fBlb_clean\fR(1)" 4
 clean up system build directories
 .SS Ancillary Commands
-.IP "\fBlh\fR(1)" 4
+.IP "\fBlb\fR(1)" 4
 generic live\-build wrapper
 .IP "\fBlb_build\fR(1)" 4
 alias for all stages
diff --git a/manpages/po/de/lb.1.po b/manpages/po/de/lb.1.po
index 1af3b9e..e3e6915 100644
--- a/manpages/po/de/lb.1.po
+++ b/manpages/po/de/lb.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
@@ -192,8 +192,8 @@ msgstr "NAME"
 
 #. type: Plain text
 #: en/lb.1:5
-msgid "B<lh> - wrapper for live-build programs"
-msgstr "B<lh> - Wrapper für live-build Programme"
+msgid "B<lb> - wrapper for live-build programs"
+msgstr "B<lb> - Wrapper für live-build Programme"
 
 #. type: SH
 #: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
@@ -232,13 +232,13 @@ msgstr "ÜBERSICHT"
 
 #. type: Plain text
 #: en/lb.1:8
-msgid "B<lh> COMMAND [COMMAND_OPTIONS]"
-msgstr "B<lh> BEFEHL [BEFEHL_OPTIONEN]"
+msgid "B<lb> COMMAND [COMMAND_OPTIONS]"
+msgstr "B<lb> BEFEHL [BEFEHL_OPTIONEN]"
 
 #. type: Plain text
 #: en/lb.1:10
-msgid "B<lh> [I<live-build\\ options>]"
-msgstr "B<lh> [I<live-build\\ Optionen>]"
+msgid "B<lb> [I<live-build\\ options>]"
+msgstr "B<lb> [I<live-build\\ Optionen>]"
 
 #. type: SH
 #: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
@@ -278,10 +278,10 @@ msgstr "BESCHREIBUNG"
 #. type: Plain text
 #: en/lb.1:13
 msgid ""
-"B<lh> is a high-level command (porcelain) of I<live-build>(7), the Debian "
+"B<lb> is a high-level command (porcelain) of I<live-build>(7), the Debian "
 "Live tool suite."
 msgstr ""
-"B<lh> ist ein high-level Befehl (\"porcelain\") von I<live-build>(7), der "
+"B<lb> ist ein high-level Befehl (\"porcelain\") von I<live-build>(7), der "
 "Debian Live Tool Suite."
 
 #. type: SH
@@ -325,11 +325,11 @@ msgstr "OPTIONEN"
 #. type: Plain text
 #: en/lb.1:18
 msgid ""
-"B<lh> has no specific options but understands all generic live-build "
+"B<lb> has no specific options but understands all generic live-build "
 "options. See I<live-build>(7) for a complete list of all generic live-build "
 "options."
 msgstr ""
-"B<lh> hat keine spezifischen Optionen aber unterstützt alle allgemeinen live-"
+"B<lb> hat keine spezifischen Optionen aber unterstützt alle allgemeinen live-"
 "build Optionen. Siehe I<live-build>(7) für eine vollständige Liste aller "
 "allgemeinen live-build Optionen."
 
diff --git a/manpages/po/de/lb_binary.1.po b/manpages/po/de/lb_binary.1.po
index a157562..304e499 100644
--- a/manpages/po/de/lb_binary.1.po
+++ b/manpages/po/de/lb_binary.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_binary_checksums.1.po b/manpages/po/de/lb_binary_checksums.1.po
index 6cb4ac0..59aa41e 100644
--- a/manpages/po/de/lb_binary_checksums.1.po
+++ b/manpages/po/de/lb_binary_checksums.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_binary_chroot.1.po b/manpages/po/de/lb_binary_chroot.1.po
index 1052e2f..1182d5e 100644
--- a/manpages/po/de/lb_binary_chroot.1.po
+++ b/manpages/po/de/lb_binary_chroot.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_binary_debian-installer.1.po b/manpages/po/de/lb_binary_debian-installer.1.po
index 2e36052..26fa764 100644
--- a/manpages/po/de/lb_binary_debian-installer.1.po
+++ b/manpages/po/de/lb_binary_debian-installer.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_binary_disk.1.po b/manpages/po/de/lb_binary_disk.1.po
index 83b0199..0ab28b1 100644
--- a/manpages/po/de/lb_binary_disk.1.po
+++ b/manpages/po/de/lb_binary_disk.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_binary_encryption.1.po b/manpages/po/de/lb_binary_encryption.1.po
index b435457..3a6507d 100644
--- a/manpages/po/de/lb_binary_encryption.1.po
+++ b/manpages/po/de/lb_binary_encryption.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_binary_grub.1.po b/manpages/po/de/lb_binary_grub.1.po
index dc93f89..f2998bc 100644
--- a/manpages/po/de/lb_binary_grub.1.po
+++ b/manpages/po/de/lb_binary_grub.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_binary_grub2.1.po b/manpages/po/de/lb_binary_grub2.1.po
index 79ecc64..35c7bd7 100644
--- a/manpages/po/de/lb_binary_grub2.1.po
+++ b/manpages/po/de/lb_binary_grub2.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_binary_includes.1.po b/manpages/po/de/lb_binary_includes.1.po
index a52983d..bf45357 100644
--- a/manpages/po/de/lb_binary_includes.1.po
+++ b/manpages/po/de/lb_binary_includes.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_binary_iso.1.po b/manpages/po/de/lb_binary_iso.1.po
index ad074ee..e530e89 100644
--- a/manpages/po/de/lb_binary_iso.1.po
+++ b/manpages/po/de/lb_binary_iso.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_binary_linux-image.1.po b/manpages/po/de/lb_binary_linux-image.1.po
index 8f91ab8..8540226 100644
--- a/manpages/po/de/lb_binary_linux-image.1.po
+++ b/manpages/po/de/lb_binary_linux-image.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_binary_local-hooks.1.po b/manpages/po/de/lb_binary_local-hooks.1.po
index bd723ba..42f6070 100644
--- a/manpages/po/de/lb_binary_local-hooks.1.po
+++ b/manpages/po/de/lb_binary_local-hooks.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_binary_local-includes.1.po b/manpages/po/de/lb_binary_local-includes.1.po
index 85fb8df..7f2e4d0 100644
--- a/manpages/po/de/lb_binary_local-includes.1.po
+++ b/manpages/po/de/lb_binary_local-includes.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_binary_local-packageslists.1.po b/manpages/po/de/lb_binary_local-packageslists.1.po
index 28cb8ef..6c87242 100644
--- a/manpages/po/de/lb_binary_local-packageslists.1.po
+++ b/manpages/po/de/lb_binary_local-packageslists.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_binary_manifest.1.po b/manpages/po/de/lb_binary_manifest.1.po
index 53005e6..687f3a3 100644
--- a/manpages/po/de/lb_binary_manifest.1.po
+++ b/manpages/po/de/lb_binary_manifest.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_binary_memtest.1.po b/manpages/po/de/lb_binary_memtest.1.po
index 6902d08..02ffac3 100644
--- a/manpages/po/de/lb_binary_memtest.1.po
+++ b/manpages/po/de/lb_binary_memtest.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_binary_net.1.po b/manpages/po/de/lb_binary_net.1.po
index 32e127b..dcfb31e 100644
--- a/manpages/po/de/lb_binary_net.1.po
+++ b/manpages/po/de/lb_binary_net.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_binary_rootfs.1.po b/manpages/po/de/lb_binary_rootfs.1.po
index 5057112..b36a2b7 100644
--- a/manpages/po/de/lb_binary_rootfs.1.po
+++ b/manpages/po/de/lb_binary_rootfs.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_binary_silo.1.po b/manpages/po/de/lb_binary_silo.1.po
index e425caf..8ed2007 100644
--- a/manpages/po/de/lb_binary_silo.1.po
+++ b/manpages/po/de/lb_binary_silo.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_binary_syslinux.1.po b/manpages/po/de/lb_binary_syslinux.1.po
index 203d90e..cfad0d4 100644
--- a/manpages/po/de/lb_binary_syslinux.1.po
+++ b/manpages/po/de/lb_binary_syslinux.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_binary_tar.1.po b/manpages/po/de/lb_binary_tar.1.po
index a8b9701..12fdde1 100644
--- a/manpages/po/de/lb_binary_tar.1.po
+++ b/manpages/po/de/lb_binary_tar.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_binary_usb.1.po b/manpages/po/de/lb_binary_usb.1.po
index eba768b..50a3cba 100644
--- a/manpages/po/de/lb_binary_usb.1.po
+++ b/manpages/po/de/lb_binary_usb.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_binary_virtual-hdd.1.po b/manpages/po/de/lb_binary_virtual-hdd.1.po
index a497915..6acb2c8 100644
--- a/manpages/po/de/lb_binary_virtual-hdd.1.po
+++ b/manpages/po/de/lb_binary_virtual-hdd.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_binary_win32-loader.1.po b/manpages/po/de/lb_binary_win32-loader.1.po
index 52d9d62..1ddf46a 100644
--- a/manpages/po/de/lb_binary_win32-loader.1.po
+++ b/manpages/po/de/lb_binary_win32-loader.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_binary_yaboot.1.po b/manpages/po/de/lb_binary_yaboot.1.po
index 2aa5152..cae0494 100644
--- a/manpages/po/de/lb_binary_yaboot.1.po
+++ b/manpages/po/de/lb_binary_yaboot.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_bootstrap.1.po b/manpages/po/de/lb_bootstrap.1.po
index dc4790b..a3b8c1f 100644
--- a/manpages/po/de/lb_bootstrap.1.po
+++ b/manpages/po/de/lb_bootstrap.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_bootstrap_cache.1.po b/manpages/po/de/lb_bootstrap_cache.1.po
index fe35531..fa9bd38 100644
--- a/manpages/po/de/lb_bootstrap_cache.1.po
+++ b/manpages/po/de/lb_bootstrap_cache.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_bootstrap_cdebootstrap.1.po b/manpages/po/de/lb_bootstrap_cdebootstrap.1.po
index d3506b6..594e1d1 100644
--- a/manpages/po/de/lb_bootstrap_cdebootstrap.1.po
+++ b/manpages/po/de/lb_bootstrap_cdebootstrap.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_bootstrap_copy.1.po b/manpages/po/de/lb_bootstrap_copy.1.po
index ad27da6..91007d0 100644
--- a/manpages/po/de/lb_bootstrap_copy.1.po
+++ b/manpages/po/de/lb_bootstrap_copy.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_bootstrap_debootstrap.1.po b/manpages/po/de/lb_bootstrap_debootstrap.1.po
index f8e048b..9d9a2d1 100644
--- a/manpages/po/de/lb_bootstrap_debootstrap.1.po
+++ b/manpages/po/de/lb_bootstrap_debootstrap.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_build.1.po b/manpages/po/de/lb_build.1.po
index 0f0df4a..3e91529 100644
--- a/manpages/po/de/lb_build.1.po
+++ b/manpages/po/de/lb_build.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-09 10:39+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot.1.po b/manpages/po/de/lb_chroot.1.po
index 621965f..71b1fbf 100644
--- a/manpages/po/de/lb_chroot.1.po
+++ b/manpages/po/de/lb_chroot.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_apt.1.po b/manpages/po/de/lb_chroot_apt.1.po
index 14e1108..7293b70 100644
--- a/manpages/po/de/lb_chroot_apt.1.po
+++ b/manpages/po/de/lb_chroot_apt.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_cache.1.po b/manpages/po/de/lb_chroot_cache.1.po
index bdbef8c..95d8b89 100644
--- a/manpages/po/de/lb_chroot_cache.1.po
+++ b/manpages/po/de/lb_chroot_cache.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_debianchroot.1.po b/manpages/po/de/lb_chroot_debianchroot.1.po
index 5d8dd13..dda6aa2 100644
--- a/manpages/po/de/lb_chroot_debianchroot.1.po
+++ b/manpages/po/de/lb_chroot_debianchroot.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_devpts.1.po b/manpages/po/de/lb_chroot_devpts.1.po
index 42d5d21..5e38280 100644
--- a/manpages/po/de/lb_chroot_devpts.1.po
+++ b/manpages/po/de/lb_chroot_devpts.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_dpkg.1.po b/manpages/po/de/lb_chroot_dpkg.1.po
index 445de1d..e382672 100644
--- a/manpages/po/de/lb_chroot_dpkg.1.po
+++ b/manpages/po/de/lb_chroot_dpkg.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_hacks.1.po b/manpages/po/de/lb_chroot_hacks.1.po
index 20f1e5e..d4095fb 100644
--- a/manpages/po/de/lb_chroot_hacks.1.po
+++ b/manpages/po/de/lb_chroot_hacks.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_hooks.1.po b/manpages/po/de/lb_chroot_hooks.1.po
index bd4b027..f078ba5 100644
--- a/manpages/po/de/lb_chroot_hooks.1.po
+++ b/manpages/po/de/lb_chroot_hooks.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_hostname.1.po b/manpages/po/de/lb_chroot_hostname.1.po
index bb466f1..235dfc3 100644
--- a/manpages/po/de/lb_chroot_hostname.1.po
+++ b/manpages/po/de/lb_chroot_hostname.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_hosts.1.po b/manpages/po/de/lb_chroot_hosts.1.po
index e9b8fa9..58b05de 100644
--- a/manpages/po/de/lb_chroot_hosts.1.po
+++ b/manpages/po/de/lb_chroot_hosts.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_install-packages.1.po b/manpages/po/de/lb_chroot_install-packages.1.po
index f8e6dd6..4e1535f 100644
--- a/manpages/po/de/lb_chroot_install-packages.1.po
+++ b/manpages/po/de/lb_chroot_install-packages.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_interactive.1.po b/manpages/po/de/lb_chroot_interactive.1.po
index 32b87d3..f379b8e 100644
--- a/manpages/po/de/lb_chroot_interactive.1.po
+++ b/manpages/po/de/lb_chroot_interactive.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_linux-image.1.po b/manpages/po/de/lb_chroot_linux-image.1.po
index 712cb57..9d76afe 100644
--- a/manpages/po/de/lb_chroot_linux-image.1.po
+++ b/manpages/po/de/lb_chroot_linux-image.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_local-hooks.1.po b/manpages/po/de/lb_chroot_local-hooks.1.po
index 42c8efc..a54ff1e 100644
--- a/manpages/po/de/lb_chroot_local-hooks.1.po
+++ b/manpages/po/de/lb_chroot_local-hooks.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_local-includes.1.po b/manpages/po/de/lb_chroot_local-includes.1.po
index 8ca239e..16b30b2 100644
--- a/manpages/po/de/lb_chroot_local-includes.1.po
+++ b/manpages/po/de/lb_chroot_local-includes.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_local-packages.1.po b/manpages/po/de/lb_chroot_local-packages.1.po
index d941859..9e367a6 100644
--- a/manpages/po/de/lb_chroot_local-packages.1.po
+++ b/manpages/po/de/lb_chroot_local-packages.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_local-packageslists.1.po b/manpages/po/de/lb_chroot_local-packageslists.1.po
index 2d145dd..d6910c9 100644
--- a/manpages/po/de/lb_chroot_local-packageslists.1.po
+++ b/manpages/po/de/lb_chroot_local-packageslists.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_local-patches.1.po b/manpages/po/de/lb_chroot_local-patches.1.po
index f9086e5..ee99023 100644
--- a/manpages/po/de/lb_chroot_local-patches.1.po
+++ b/manpages/po/de/lb_chroot_local-patches.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_local-preseed.1.po b/manpages/po/de/lb_chroot_local-preseed.1.po
index c08d1db..f967e1e 100644
--- a/manpages/po/de/lb_chroot_local-preseed.1.po
+++ b/manpages/po/de/lb_chroot_local-preseed.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_localization.1.po b/manpages/po/de/lb_chroot_localization.1.po
index 4f85d23..2fc73d7 100644
--- a/manpages/po/de/lb_chroot_localization.1.po
+++ b/manpages/po/de/lb_chroot_localization.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_packages.1.po b/manpages/po/de/lb_chroot_packages.1.po
index 5ceacf3..51fd913 100644
--- a/manpages/po/de/lb_chroot_packages.1.po
+++ b/manpages/po/de/lb_chroot_packages.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_packageslists.1.po b/manpages/po/de/lb_chroot_packageslists.1.po
index 3cbe05f..5ccef76 100644
--- a/manpages/po/de/lb_chroot_packageslists.1.po
+++ b/manpages/po/de/lb_chroot_packageslists.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_preseed.1.po b/manpages/po/de/lb_chroot_preseed.1.po
index ddb5036..a498f0d 100644
--- a/manpages/po/de/lb_chroot_preseed.1.po
+++ b/manpages/po/de/lb_chroot_preseed.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_proc.1.po b/manpages/po/de/lb_chroot_proc.1.po
index 9dfe7ee..006e45a 100644
--- a/manpages/po/de/lb_chroot_proc.1.po
+++ b/manpages/po/de/lb_chroot_proc.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_resolv.1.po b/manpages/po/de/lb_chroot_resolv.1.po
index 1f9ce5d..3031227 100644
--- a/manpages/po/de/lb_chroot_resolv.1.po
+++ b/manpages/po/de/lb_chroot_resolv.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_selinuxfs.1.po b/manpages/po/de/lb_chroot_selinuxfs.1.po
index 16340fa..a783456 100644
--- a/manpages/po/de/lb_chroot_selinuxfs.1.po
+++ b/manpages/po/de/lb_chroot_selinuxfs.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_sources.1.po b/manpages/po/de/lb_chroot_sources.1.po
index 0407c56..6b93ffe 100644
--- a/manpages/po/de/lb_chroot_sources.1.po
+++ b/manpages/po/de/lb_chroot_sources.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-09 11:47+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_symlinks.1.po b/manpages/po/de/lb_chroot_symlinks.1.po
index 1406793..51998de 100644
--- a/manpages/po/de/lb_chroot_symlinks.1.po
+++ b/manpages/po/de/lb_chroot_symlinks.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_sysfs.1.po b/manpages/po/de/lb_chroot_sysfs.1.po
index fb66527..64b7b5b 100644
--- a/manpages/po/de/lb_chroot_sysfs.1.po
+++ b/manpages/po/de/lb_chroot_sysfs.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_sysv-rc.1.po b/manpages/po/de/lb_chroot_sysv-rc.1.po
index fdee030..e85b275 100644
--- a/manpages/po/de/lb_chroot_sysv-rc.1.po
+++ b/manpages/po/de/lb_chroot_sysv-rc.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_sysvinit.1.po b/manpages/po/de/lb_chroot_sysvinit.1.po
index ef8a72a..5e94b5b 100644
--- a/manpages/po/de/lb_chroot_sysvinit.1.po
+++ b/manpages/po/de/lb_chroot_sysvinit.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_tasks.1.po b/manpages/po/de/lb_chroot_tasks.1.po
index 26acb1b..b090685 100644
--- a/manpages/po/de/lb_chroot_tasks.1.po
+++ b/manpages/po/de/lb_chroot_tasks.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_upstart.1.po b/manpages/po/de/lb_chroot_upstart.1.po
index 378c32b..7ddba3f 100644
--- a/manpages/po/de/lb_chroot_upstart.1.po
+++ b/manpages/po/de/lb_chroot_upstart.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_clean.1.po b/manpages/po/de/lb_clean.1.po
index 00d91f2..30ddf98 100644
--- a/manpages/po/de/lb_clean.1.po
+++ b/manpages/po/de/lb_clean.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_config.1.po b/manpages/po/de/lb_config.1.po
index aa739a8..de98efd 100644
--- a/manpages/po/de/lb_config.1.po
+++ b/manpages/po/de/lb_config.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_local.1.po b/manpages/po/de/lb_local.1.po
index eb477ff..fa4e0af 100644
--- a/manpages/po/de/lb_local.1.po
+++ b/manpages/po/de/lb_local.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-09 12:13+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_source.1.po b/manpages/po/de/lb_source.1.po
index b00897f..3b27dbe 100644
--- a/manpages/po/de/lb_source.1.po
+++ b/manpages/po/de/lb_source.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_source_checksums.1.po b/manpages/po/de/lb_source_checksums.1.po
index 10a66fb..8bd0df3 100644
--- a/manpages/po/de/lb_source_checksums.1.po
+++ b/manpages/po/de/lb_source_checksums.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-09 11:47+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_source_debian-live.1.po b/manpages/po/de/lb_source_debian-live.1.po
index 546137e..b54308b 100644
--- a/manpages/po/de/lb_source_debian-live.1.po
+++ b/manpages/po/de/lb_source_debian-live.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-09 11:47+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_source_debian.1.po b/manpages/po/de/lb_source_debian.1.po
index 86017b2..fbde8f3 100644
--- a/manpages/po/de/lb_source_debian.1.po
+++ b/manpages/po/de/lb_source_debian.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-09 11:47+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_source_disk.1.po b/manpages/po/de/lb_source_disk.1.po
index 296191d..0c1b5b9 100644
--- a/manpages/po/de/lb_source_disk.1.po
+++ b/manpages/po/de/lb_source_disk.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-09 11:47+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_source_iso.1.po b/manpages/po/de/lb_source_iso.1.po
index 8fb795c..f41ce10 100644
--- a/manpages/po/de/lb_source_iso.1.po
+++ b/manpages/po/de/lb_source_iso.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-09 11:47+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_source_net.1.po b/manpages/po/de/lb_source_net.1.po
index 452426c..bccc414 100644
--- a/manpages/po/de/lb_source_net.1.po
+++ b/manpages/po/de/lb_source_net.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-09 11:47+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_source_tar.1.po b/manpages/po/de/lb_source_tar.1.po
index ff6a57f..ef263af 100644
--- a/manpages/po/de/lb_source_tar.1.po
+++ b/manpages/po/de/lb_source_tar.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-09 11:47+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_source_usb.1.po b/manpages/po/de/lb_source_usb.1.po
index f28a4ef..1c187ff 100644
--- a/manpages/po/de/lb_source_usb.1.po
+++ b/manpages/po/de/lb_source_usb.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-09 11:47+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_source_virtual-hdd.1.po b/manpages/po/de/lb_source_virtual-hdd.1.po
index 2b0ce07..b1d2007 100644
--- a/manpages/po/de/lb_source_virtual-hdd.1.po
+++ b/manpages/po/de/lb_source_virtual-hdd.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-09 11:47+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_testroot.1.po b/manpages/po/de/lb_testroot.1.po
index b46bd38..e11bcd7 100644
--- a/manpages/po/de/lb_testroot.1.po
+++ b/manpages/po/de/lb_testroot.1.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/live-build.7.po b/manpages/po/de/live-build.7.po
index 36469cd..bd2744b 100644
--- a/manpages/po/de/live-build.7.po
+++ b/manpages/po/de/live-build.7.po
@@ -4,8 +4,8 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: live-build 2.0.2\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"Project-Id-Version: live-build 2.0.3\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: 2010-05-08 23:50+0300\n"
 "Last-Translator: Daniel Baumann <daniel at debian.org>\n"
 "Language-Team: none\n"
@@ -82,8 +82,8 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
-msgstr "02.10.2010"
+msgid "2010-10-12"
+msgstr "12.10.2010"
 
 #. type: TH
 #: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
@@ -117,7 +117,7 @@ msgstr "02.10.2010"
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
@@ -981,7 +981,7 @@ msgstr ""
 #. type: IP
 #: en/live-build.7:71
 #, no-wrap
-msgid "B<lh>(1)"
+msgid "B<lb>(1)"
 msgstr ""
 
 #. type: Plain text
diff --git a/manpages/pot/lb.1.pot b/manpages/pot/lb.1.pot
index 01e3e8b..5ea491a 100644
--- a/manpages/pot/lb.1.pot
+++ b/manpages/pot/lb.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
@@ -193,7 +193,7 @@ msgstr ""
 
 #. type: Plain text
 #: en/lb.1:5
-msgid "B<lh> - wrapper for live-build programs"
+msgid "B<lb> - wrapper for live-build programs"
 msgstr ""
 
 #. type: SH
@@ -233,12 +233,12 @@ msgstr ""
 
 #. type: Plain text
 #: en/lb.1:8
-msgid "B<lh> COMMAND [COMMAND_OPTIONS]"
+msgid "B<lb> COMMAND [COMMAND_OPTIONS]"
 msgstr ""
 
 #. type: Plain text
 #: en/lb.1:10
-msgid "B<lh> [I<live-build\\ options>]"
+msgid "B<lb> [I<live-build\\ options>]"
 msgstr ""
 
 #. type: SH
@@ -279,7 +279,7 @@ msgstr ""
 #. type: Plain text
 #: en/lb.1:13
 msgid ""
-"B<lh> is a high-level command (porcelain) of I<live-build>(7), the Debian "
+"B<lb> is a high-level command (porcelain) of I<live-build>(7), the Debian "
 "Live tool suite."
 msgstr ""
 
@@ -324,7 +324,7 @@ msgstr ""
 #. type: Plain text
 #: en/lb.1:18
 msgid ""
-"B<lh> has no specific options but understands all generic live-build "
+"B<lb> has no specific options but understands all generic live-build "
 "options. See I<live-build>(7) for a complete list of all generic live-build "
 "options."
 msgstr ""
diff --git a/manpages/pot/lb_binary.1.pot b/manpages/pot/lb_binary.1.pot
index 4140735..b1b8afc 100644
--- a/manpages/pot/lb_binary.1.pot
+++ b/manpages/pot/lb_binary.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_binary_checksums.1.pot b/manpages/pot/lb_binary_checksums.1.pot
index e428a0e..546cf5a 100644
--- a/manpages/pot/lb_binary_checksums.1.pot
+++ b/manpages/pot/lb_binary_checksums.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_binary_chroot.1.pot b/manpages/pot/lb_binary_chroot.1.pot
index df30f43..4515d14 100644
--- a/manpages/pot/lb_binary_chroot.1.pot
+++ b/manpages/pot/lb_binary_chroot.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_binary_debian-installer.1.pot b/manpages/pot/lb_binary_debian-installer.1.pot
index 0f8e70f..305b87a 100644
--- a/manpages/pot/lb_binary_debian-installer.1.pot
+++ b/manpages/pot/lb_binary_debian-installer.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_binary_disk.1.pot b/manpages/pot/lb_binary_disk.1.pot
index df16716..bf37d90 100644
--- a/manpages/pot/lb_binary_disk.1.pot
+++ b/manpages/pot/lb_binary_disk.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_binary_encryption.1.pot b/manpages/pot/lb_binary_encryption.1.pot
index ad2e846..f3e28b1 100644
--- a/manpages/pot/lb_binary_encryption.1.pot
+++ b/manpages/pot/lb_binary_encryption.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_binary_grub.1.pot b/manpages/pot/lb_binary_grub.1.pot
index 3f961c1..359f825 100644
--- a/manpages/pot/lb_binary_grub.1.pot
+++ b/manpages/pot/lb_binary_grub.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_binary_grub2.1.pot b/manpages/pot/lb_binary_grub2.1.pot
index 16be913..26fc940 100644
--- a/manpages/pot/lb_binary_grub2.1.pot
+++ b/manpages/pot/lb_binary_grub2.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_binary_includes.1.pot b/manpages/pot/lb_binary_includes.1.pot
index 240ebad..05a15ba 100644
--- a/manpages/pot/lb_binary_includes.1.pot
+++ b/manpages/pot/lb_binary_includes.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_binary_iso.1.pot b/manpages/pot/lb_binary_iso.1.pot
index cabbb3d..f6b7c0e 100644
--- a/manpages/pot/lb_binary_iso.1.pot
+++ b/manpages/pot/lb_binary_iso.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_binary_linux-image.1.pot b/manpages/pot/lb_binary_linux-image.1.pot
index 320c207..bddf744 100644
--- a/manpages/pot/lb_binary_linux-image.1.pot
+++ b/manpages/pot/lb_binary_linux-image.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_binary_local-hooks.1.pot b/manpages/pot/lb_binary_local-hooks.1.pot
index a1b6105..e058468 100644
--- a/manpages/pot/lb_binary_local-hooks.1.pot
+++ b/manpages/pot/lb_binary_local-hooks.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_binary_local-includes.1.pot b/manpages/pot/lb_binary_local-includes.1.pot
index 7cf6fd0..a459204 100644
--- a/manpages/pot/lb_binary_local-includes.1.pot
+++ b/manpages/pot/lb_binary_local-includes.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_binary_local-packageslists.1.pot b/manpages/pot/lb_binary_local-packageslists.1.pot
index c1f037e..fb61930 100644
--- a/manpages/pot/lb_binary_local-packageslists.1.pot
+++ b/manpages/pot/lb_binary_local-packageslists.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_binary_manifest.1.pot b/manpages/pot/lb_binary_manifest.1.pot
index 8880a42..a07ce5d 100644
--- a/manpages/pot/lb_binary_manifest.1.pot
+++ b/manpages/pot/lb_binary_manifest.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_binary_memtest.1.pot b/manpages/pot/lb_binary_memtest.1.pot
index 0fb59de..5ca3986 100644
--- a/manpages/pot/lb_binary_memtest.1.pot
+++ b/manpages/pot/lb_binary_memtest.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_binary_net.1.pot b/manpages/pot/lb_binary_net.1.pot
index 49933fc..06cf1a8 100644
--- a/manpages/pot/lb_binary_net.1.pot
+++ b/manpages/pot/lb_binary_net.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_binary_rootfs.1.pot b/manpages/pot/lb_binary_rootfs.1.pot
index 1f5465a..0d1eefc 100644
--- a/manpages/pot/lb_binary_rootfs.1.pot
+++ b/manpages/pot/lb_binary_rootfs.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_binary_silo.1.pot b/manpages/pot/lb_binary_silo.1.pot
index ff7584d..b1248ce 100644
--- a/manpages/pot/lb_binary_silo.1.pot
+++ b/manpages/pot/lb_binary_silo.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_binary_syslinux.1.pot b/manpages/pot/lb_binary_syslinux.1.pot
index c29658a..12206e8 100644
--- a/manpages/pot/lb_binary_syslinux.1.pot
+++ b/manpages/pot/lb_binary_syslinux.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_binary_tar.1.pot b/manpages/pot/lb_binary_tar.1.pot
index 25f89f6..d475481 100644
--- a/manpages/pot/lb_binary_tar.1.pot
+++ b/manpages/pot/lb_binary_tar.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_binary_usb.1.pot b/manpages/pot/lb_binary_usb.1.pot
index d90b2cf..257b9a9 100644
--- a/manpages/pot/lb_binary_usb.1.pot
+++ b/manpages/pot/lb_binary_usb.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_binary_virtual-hdd.1.pot b/manpages/pot/lb_binary_virtual-hdd.1.pot
index c4acea3..825fbe5 100644
--- a/manpages/pot/lb_binary_virtual-hdd.1.pot
+++ b/manpages/pot/lb_binary_virtual-hdd.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_binary_win32-loader.1.pot b/manpages/pot/lb_binary_win32-loader.1.pot
index 4e0af82..6a85309 100644
--- a/manpages/pot/lb_binary_win32-loader.1.pot
+++ b/manpages/pot/lb_binary_win32-loader.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_binary_yaboot.1.pot b/manpages/pot/lb_binary_yaboot.1.pot
index 2b97795..ae2d331 100644
--- a/manpages/pot/lb_binary_yaboot.1.pot
+++ b/manpages/pot/lb_binary_yaboot.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_bootstrap.1.pot b/manpages/pot/lb_bootstrap.1.pot
index a657a7a..97e44c4 100644
--- a/manpages/pot/lb_bootstrap.1.pot
+++ b/manpages/pot/lb_bootstrap.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_bootstrap_cache.1.pot b/manpages/pot/lb_bootstrap_cache.1.pot
index bab0324..e788069 100644
--- a/manpages/pot/lb_bootstrap_cache.1.pot
+++ b/manpages/pot/lb_bootstrap_cache.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_bootstrap_cdebootstrap.1.pot b/manpages/pot/lb_bootstrap_cdebootstrap.1.pot
index c986f4a..eb4dcb8 100644
--- a/manpages/pot/lb_bootstrap_cdebootstrap.1.pot
+++ b/manpages/pot/lb_bootstrap_cdebootstrap.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_bootstrap_copy.1.pot b/manpages/pot/lb_bootstrap_copy.1.pot
index 20d5871..29edb84 100644
--- a/manpages/pot/lb_bootstrap_copy.1.pot
+++ b/manpages/pot/lb_bootstrap_copy.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_bootstrap_debootstrap.1.pot b/manpages/pot/lb_bootstrap_debootstrap.1.pot
index 4a2ba8c..8f9a2ca 100644
--- a/manpages/pot/lb_bootstrap_debootstrap.1.pot
+++ b/manpages/pot/lb_bootstrap_debootstrap.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_build.1.pot b/manpages/pot/lb_build.1.pot
index aae9b2b..86d0217 100644
--- a/manpages/pot/lb_build.1.pot
+++ b/manpages/pot/lb_build.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot.1.pot b/manpages/pot/lb_chroot.1.pot
index 81a969b..5f8cac2 100644
--- a/manpages/pot/lb_chroot.1.pot
+++ b/manpages/pot/lb_chroot.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_apt.1.pot b/manpages/pot/lb_chroot_apt.1.pot
index 911d76b..6042d97 100644
--- a/manpages/pot/lb_chroot_apt.1.pot
+++ b/manpages/pot/lb_chroot_apt.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_cache.1.pot b/manpages/pot/lb_chroot_cache.1.pot
index 7d93fe6..17f2c47 100644
--- a/manpages/pot/lb_chroot_cache.1.pot
+++ b/manpages/pot/lb_chroot_cache.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_debianchroot.1.pot b/manpages/pot/lb_chroot_debianchroot.1.pot
index 3a30508..631a2e9 100644
--- a/manpages/pot/lb_chroot_debianchroot.1.pot
+++ b/manpages/pot/lb_chroot_debianchroot.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_devpts.1.pot b/manpages/pot/lb_chroot_devpts.1.pot
index 7514e3a..b200292 100644
--- a/manpages/pot/lb_chroot_devpts.1.pot
+++ b/manpages/pot/lb_chroot_devpts.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_dpkg.1.pot b/manpages/pot/lb_chroot_dpkg.1.pot
index be54a18..a191888 100644
--- a/manpages/pot/lb_chroot_dpkg.1.pot
+++ b/manpages/pot/lb_chroot_dpkg.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_hacks.1.pot b/manpages/pot/lb_chroot_hacks.1.pot
index 255eeeb..a89548c 100644
--- a/manpages/pot/lb_chroot_hacks.1.pot
+++ b/manpages/pot/lb_chroot_hacks.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_hooks.1.pot b/manpages/pot/lb_chroot_hooks.1.pot
index cc399e9..b66a956 100644
--- a/manpages/pot/lb_chroot_hooks.1.pot
+++ b/manpages/pot/lb_chroot_hooks.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_hostname.1.pot b/manpages/pot/lb_chroot_hostname.1.pot
index 638bb0b..1479f1c 100644
--- a/manpages/pot/lb_chroot_hostname.1.pot
+++ b/manpages/pot/lb_chroot_hostname.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_hosts.1.pot b/manpages/pot/lb_chroot_hosts.1.pot
index 719bd70..c2426f1 100644
--- a/manpages/pot/lb_chroot_hosts.1.pot
+++ b/manpages/pot/lb_chroot_hosts.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_install-packages.1.pot b/manpages/pot/lb_chroot_install-packages.1.pot
index 31fadc3..afa1552 100644
--- a/manpages/pot/lb_chroot_install-packages.1.pot
+++ b/manpages/pot/lb_chroot_install-packages.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_interactive.1.pot b/manpages/pot/lb_chroot_interactive.1.pot
index 0d608d8..0c0f6ac 100644
--- a/manpages/pot/lb_chroot_interactive.1.pot
+++ b/manpages/pot/lb_chroot_interactive.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_linux-image.1.pot b/manpages/pot/lb_chroot_linux-image.1.pot
index 5889e0e..c22dfe6 100644
--- a/manpages/pot/lb_chroot_linux-image.1.pot
+++ b/manpages/pot/lb_chroot_linux-image.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_local-hooks.1.pot b/manpages/pot/lb_chroot_local-hooks.1.pot
index c287722..8e44f82 100644
--- a/manpages/pot/lb_chroot_local-hooks.1.pot
+++ b/manpages/pot/lb_chroot_local-hooks.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_local-includes.1.pot b/manpages/pot/lb_chroot_local-includes.1.pot
index c6945df..4b4207f 100644
--- a/manpages/pot/lb_chroot_local-includes.1.pot
+++ b/manpages/pot/lb_chroot_local-includes.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_local-packages.1.pot b/manpages/pot/lb_chroot_local-packages.1.pot
index bd12d09..b91b6b1 100644
--- a/manpages/pot/lb_chroot_local-packages.1.pot
+++ b/manpages/pot/lb_chroot_local-packages.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_local-packageslists.1.pot b/manpages/pot/lb_chroot_local-packageslists.1.pot
index 3d3c679..a2bd18d 100644
--- a/manpages/pot/lb_chroot_local-packageslists.1.pot
+++ b/manpages/pot/lb_chroot_local-packageslists.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_local-patches.1.pot b/manpages/pot/lb_chroot_local-patches.1.pot
index 1581b63..7f83b55 100644
--- a/manpages/pot/lb_chroot_local-patches.1.pot
+++ b/manpages/pot/lb_chroot_local-patches.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_local-preseed.1.pot b/manpages/pot/lb_chroot_local-preseed.1.pot
index 353464a..e21f2c9 100644
--- a/manpages/pot/lb_chroot_local-preseed.1.pot
+++ b/manpages/pot/lb_chroot_local-preseed.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_localization.1.pot b/manpages/pot/lb_chroot_localization.1.pot
index fa39534..670bba2 100644
--- a/manpages/pot/lb_chroot_localization.1.pot
+++ b/manpages/pot/lb_chroot_localization.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_packages.1.pot b/manpages/pot/lb_chroot_packages.1.pot
index 285a212..ac30140 100644
--- a/manpages/pot/lb_chroot_packages.1.pot
+++ b/manpages/pot/lb_chroot_packages.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_packageslists.1.pot b/manpages/pot/lb_chroot_packageslists.1.pot
index 843fad7..48d0002 100644
--- a/manpages/pot/lb_chroot_packageslists.1.pot
+++ b/manpages/pot/lb_chroot_packageslists.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_preseed.1.pot b/manpages/pot/lb_chroot_preseed.1.pot
index d69e539..3fe30ec 100644
--- a/manpages/pot/lb_chroot_preseed.1.pot
+++ b/manpages/pot/lb_chroot_preseed.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_proc.1.pot b/manpages/pot/lb_chroot_proc.1.pot
index 8c4169b..50b9bab 100644
--- a/manpages/pot/lb_chroot_proc.1.pot
+++ b/manpages/pot/lb_chroot_proc.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_resolv.1.pot b/manpages/pot/lb_chroot_resolv.1.pot
index 3b7e875..3a3a780 100644
--- a/manpages/pot/lb_chroot_resolv.1.pot
+++ b/manpages/pot/lb_chroot_resolv.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_selinuxfs.1.pot b/manpages/pot/lb_chroot_selinuxfs.1.pot
index 16c6e42..76007d5 100644
--- a/manpages/pot/lb_chroot_selinuxfs.1.pot
+++ b/manpages/pot/lb_chroot_selinuxfs.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_sources.1.pot b/manpages/pot/lb_chroot_sources.1.pot
index be67378..9062977 100644
--- a/manpages/pot/lb_chroot_sources.1.pot
+++ b/manpages/pot/lb_chroot_sources.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_symlinks.1.pot b/manpages/pot/lb_chroot_symlinks.1.pot
index 2ef6a3c..e59d2da 100644
--- a/manpages/pot/lb_chroot_symlinks.1.pot
+++ b/manpages/pot/lb_chroot_symlinks.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_sysfs.1.pot b/manpages/pot/lb_chroot_sysfs.1.pot
index 71e7dd1..8cc6db7 100644
--- a/manpages/pot/lb_chroot_sysfs.1.pot
+++ b/manpages/pot/lb_chroot_sysfs.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_sysv-rc.1.pot b/manpages/pot/lb_chroot_sysv-rc.1.pot
index 27b2178..8fedffb 100644
--- a/manpages/pot/lb_chroot_sysv-rc.1.pot
+++ b/manpages/pot/lb_chroot_sysv-rc.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_sysvinit.1.pot b/manpages/pot/lb_chroot_sysvinit.1.pot
index 7524767..a962fd4 100644
--- a/manpages/pot/lb_chroot_sysvinit.1.pot
+++ b/manpages/pot/lb_chroot_sysvinit.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_tasks.1.pot b/manpages/pot/lb_chroot_tasks.1.pot
index 4808aa4..b637da1 100644
--- a/manpages/pot/lb_chroot_tasks.1.pot
+++ b/manpages/pot/lb_chroot_tasks.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_upstart.1.pot b/manpages/pot/lb_chroot_upstart.1.pot
index 9816e3f..1f24c39 100644
--- a/manpages/pot/lb_chroot_upstart.1.pot
+++ b/manpages/pot/lb_chroot_upstart.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_clean.1.pot b/manpages/pot/lb_clean.1.pot
index 6e22df3..a88d23e 100644
--- a/manpages/pot/lb_clean.1.pot
+++ b/manpages/pot/lb_clean.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_config.1.pot b/manpages/pot/lb_config.1.pot
index 61f8baa..5bd0684 100644
--- a/manpages/pot/lb_config.1.pot
+++ b/manpages/pot/lb_config.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_local.1.pot b/manpages/pot/lb_local.1.pot
index e21cba1..5c88fbc 100644
--- a/manpages/pot/lb_local.1.pot
+++ b/manpages/pot/lb_local.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_source.1.pot b/manpages/pot/lb_source.1.pot
index f82351a..7f3b436 100644
--- a/manpages/pot/lb_source.1.pot
+++ b/manpages/pot/lb_source.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_source_checksums.1.pot b/manpages/pot/lb_source_checksums.1.pot
index 72e2312..f9ec47f 100644
--- a/manpages/pot/lb_source_checksums.1.pot
+++ b/manpages/pot/lb_source_checksums.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_source_debian-live.1.pot b/manpages/pot/lb_source_debian-live.1.pot
index dd9007c..c9ea8e1 100644
--- a/manpages/pot/lb_source_debian-live.1.pot
+++ b/manpages/pot/lb_source_debian-live.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_source_debian.1.pot b/manpages/pot/lb_source_debian.1.pot
index 5e313c0..4209fbc 100644
--- a/manpages/pot/lb_source_debian.1.pot
+++ b/manpages/pot/lb_source_debian.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_source_disk.1.pot b/manpages/pot/lb_source_disk.1.pot
index 9f75a33..c17d9ee 100644
--- a/manpages/pot/lb_source_disk.1.pot
+++ b/manpages/pot/lb_source_disk.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_source_iso.1.pot b/manpages/pot/lb_source_iso.1.pot
index 316fef7..2bcb83a 100644
--- a/manpages/pot/lb_source_iso.1.pot
+++ b/manpages/pot/lb_source_iso.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_source_net.1.pot b/manpages/pot/lb_source_net.1.pot
index 843e804..4b8a4cf 100644
--- a/manpages/pot/lb_source_net.1.pot
+++ b/manpages/pot/lb_source_net.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_source_tar.1.pot b/manpages/pot/lb_source_tar.1.pot
index f79fc21..01cf297 100644
--- a/manpages/pot/lb_source_tar.1.pot
+++ b/manpages/pot/lb_source_tar.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_source_usb.1.pot b/manpages/pot/lb_source_usb.1.pot
index c4f8ac0..6775fe4 100644
--- a/manpages/pot/lb_source_usb.1.pot
+++ b/manpages/pot/lb_source_usb.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_source_virtual-hdd.1.pot b/manpages/pot/lb_source_virtual-hdd.1.pot
index f55aa07..4b94bda 100644
--- a/manpages/pot/lb_source_virtual-hdd.1.pot
+++ b/manpages/pot/lb_source_virtual-hdd.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_testroot.1.pot b/manpages/pot/lb_testroot.1.pot
index 84e2445..8b1d79c 100644
--- a/manpages/pot/lb_testroot.1.pot
+++ b/manpages/pot/lb_testroot.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/live-build.7.pot b/manpages/pot/live-build.7.pot
index 70f258d..8e6083d 100644
--- a/manpages/pot/live-build.7.pot
+++ b/manpages/pot/live-build.7.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2010-10-02 10:01+0300\n"
+"POT-Creation-Date: 2010-10-12 11:06+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -83,7 +83,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2010-10-02"
+msgid "2010-10-12"
 msgstr ""
 
 #. type: TH
@@ -118,7 +118,7 @@ msgstr ""
 #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2.0.2"
+msgid "2.0.3"
 msgstr ""
 
 #. type: TH
@@ -966,7 +966,7 @@ msgstr ""
 #. type: IP
 #: en/live-build.7:71
 #, no-wrap
-msgid "B<lh>(1)"
+msgid "B<lb>(1)"
 msgstr ""
 
 #. type: Plain text
diff --git a/repositories/backports.debian-maintainers.org b/repositories/backports.debian-maintainers.org
deleted file mode 100644
index 1e708a0..0000000
--- a/repositories/backports.debian-maintainers.org
+++ /dev/null
@@ -1,3 +0,0 @@
-# Backports Maintainers
-deb http://backports.debian-maintainers.org/ @DISTRIBUTION at -backports @ARCHIVE_AREAS@
-deb-src http://backports.debian-maintainers.org/ @DISTRIBUTION at -backports @ARCHIVE_AREAS@
diff --git a/repositories/backports.debian-maintainers.org.gpg b/repositories/backports.debian-maintainers.org.gpg
deleted file mode 100644
index 7f9b836..0000000
--- a/repositories/backports.debian-maintainers.org.gpg
+++ /dev/null
@@ -1,20 +0,0 @@
------BEGIN PGP PUBLIC KEY BLOCK-----
-Version: GnuPG v1.4.9 (GNU/Linux)
-
-mQENBEtljiMBCADSIplButAWL0OuM4uvDtZYjBcPlQNjwQDZ/Dpg5QuRAgNSUdx7
-wBQOQXqC4LCi9ykpvYi8FEtz0bl60M9uJdc4n+130It8gSZs7Cn0WoFk7uo0S4IS
-79EQdP+yfZNv/vY11cv6TwOb7JEqB5BI7T642Y+UgQZnpT/Diykks986CYeZSfpm
-6gnASAEe0jJg79Zpzpc3kBECCwN6fIFZ4MOxkaXgvfhWsOS42s6zxtQXJ65njibR
-W47Klu75sxPS+5EKaS10C5+Tmv0XpV7S7s8VtRtKemMjYfLdsPmubmGcI+t/uEF7
-qT2zJLINSIIL01kpVBFpqxCmnO51XURgRqOFABEBAAG0Z2RlYmlhbi1tYWludGFp
-bmVycy5vcmcgQXJjaGl2ZSBBdXRvbWF0aWMgU2lnbmluZyBLZXkgKDIwMTAwMTAx
-KSA8c3lzYWRtaW5AbGlzdHMuZGViaWFuLW1haW50YWluZXJzLm9yZz6JAT4EEwEC
-ACgFAktljiMCGwMFCQHihQAGCwkIBwMCBhUIAgkKCwQWAgMBAh4BAheAAAoJEJ7r
-yNubnDy2BeUH/1SWIbqzIh2LkF1XK4iXyXGrzGlqtef5JX/tjaY7RC5gPVyZBP1V
-jHcozn7Sum09KxaijsgP/lIVZ2tnu9niT2Waz5GPgUv79bqjGc238gEhH5zpbun/
-WF6UapiINHNYLFx0f18ImQ1gU13hLn0PYvuyN/QKmxaPlcUQtNJc3/ZtyFA0nPpB
-ejiMEBxgw0H80FWSpawLKUFEStT1Y+khK0fZYVoWl0OwhJbsY/L6nBcfv27zH+5d
-g7VuNpRte7AyxZEufescwWILTjIq3K2v9XHAy7sJmstfycrHQFy/33hE4yRQcOyu
-bAMnNqLUp7mwqRw+KYPkAQo/DUlO//SsUKY=
-=+IFy
------END PGP PUBLIC KEY BLOCK-----
diff --git a/repositories/preconfig.debian-projects.org b/repositories/preconfig.debian-projects.org
deleted file mode 100644
index 0b86531..0000000
--- a/repositories/preconfig.debian-projects.org
+++ /dev/null
@@ -1,3 +0,0 @@
-# Preconfig Project
-deb http://preconfig.debian-projects.org/ @DISTRIBUTION@ @ARCHIVE_AREAS@
-deb-src http://preconfig.debian-projects.org/ @DISTRIBUTION@ @ARCHIVE_AREAS@
diff --git a/repositories/preconfig.debian-projects.org.gpg b/repositories/preconfig.debian-projects.org.gpg
deleted file mode 100644
index f3f8f4d..0000000
--- a/repositories/preconfig.debian-projects.org.gpg
+++ /dev/null
@@ -1,32 +0,0 @@
------BEGIN PGP PUBLIC KEY BLOCK-----
-Version: GnuPG v1.4.10 (GNU/Linux)
-
-mQENBEtljTgBCAD5LmgN9wnqMRQlzQil2lKbkkAUp9KE07Eb/94pRxBEGyj+qkvD
-mGREXWbPINZptYKcursPsyJ+8dCOlIAkKPC3lLrUKqU6FvThpBzU9pi1s/oCcjRk
-+yq2+qd4uER762xxaoFL0L9Sllu2fWmuQWCjKGaTTaR739itX3ZDU1w9Z2TQseyk
-Jzbl4zl4C9opWTsFSL/MqAiSod1xAcXdhCl+CYxYETlDT3M41VjOfn0VJWW1Sj6b
-0arFjnEnGv+IZpv8c938uCVGBT27m0ZWS4a1zcuVhlxcf0tAxQl2xzCQs/aX6Aim
-+aMfYYFWbYbabiOlV8Fc5rSra0SVFQToEPOJABEBAAG0YWRlYmlhbi1wcm9qZWN0
-cy5vcmcgQXJjaGl2ZSBBdXRvbWF0aWMgU2lnbmluZyBLZXkgKDIwMTAwMTAxKSA8
-c3lzYWRtaW5AbGlzdHMuZGViaWFuLXByb2plY3RzLm9yZz6JAT4EEwECACgFAktl
-jTgCGwMFCQHihQAGCwkIBwMCBhUIAgkKCwQWAgMBAh4BAheAAAoJEPiNTGC46ZjA
-eQIIAMkUV1QuzqiGR1J3sWLmazs/a98dINIoQ08c3izhQgKann5PnrdYz7GjLIBS
-wyMak+k8m45YTj7du9J8X8A/X2RQ8VooMDRNLcJNAfuh4B3e0MimybBKCS9dyoDD
-N8kUyZanUfSzWFSBOa19R/0vN6IeyxR6uu5xJw7flTZ7928QLtMfhLvUC4IXQ03h
-Gg6xFwcPXoAlQJqnhRFKBZQN/zJSFV3SWqnwsrJ0UfnA/rMHJqpDzHJihwA6oSyz
-i0b8TRx/q9J3bzwcYDYNaTcRegT2VLRl6gJZQsYktJZNz83oUqvjm7b1f5lMojOh
-3qde90fHtnyiqH859jrGzP8BhRi5AQ0ES2WNOAEIAKgNlO60unDdECx/vCLR5t9O
-ytRDt92F32qqg6ar+ZcPA+Zanpqha5LrrUQWKyAT0EECfrCsoiiaWh+DoDlYU/HC
-daXSuAdDmIDBlNp9T0BQzJFxCoN1KzEi0VxwoMwyqu7oJzcWIY/QiG0lx+ojwLe6
-M4L3u7+Q5C4BXjYJ+9pVizIJj+BD2aTqEo//wLFvVZdB7eKqwkcbIJhY/gUuT7LE
-Kbkf1M8J/kGRmyO831Y7qqVwM4EpxGWHOdYgJJdTtldqmWfANm1NyB6G/a3jzQX2
-iB7x9huRAge7wftQWm/5WHx6NvxZ5ubyHYCUSUybcpzVjsoaMZO6hcM4eWV9wNcA
-EQEAAYkBJQQYAQIADwUCS2WNOAIbDAUJAeKFAAAKCRD4jUxguOmYwPRHCACfRjPf
-6zN7UlFtoPMgSvekyp63LI8ruVRW4ewgBdWyWJTWHhLomcFqtfu1OYXJtwQuDSw0
-sj7aVxGTrVnyL5b8+ldya8l6xp1R5/8WZ1jOzRvMYVYMEsM712jb+IAsQjd8jQEx
-MFRlK8cfPu1d4KUbsiHetDz63nXkE0atBSmCzyKzj1KXk32snE1eMZfOn3I+mAhz
-BH6YQfLtIaoorrmyk0U9kWs1W8qdG7hVxXJLe2MbU39sfnfxTgvlb7zQ8xbbqScV
-sWPGsZD8dBICuLrcSnqDSCNnZdRmgBIOOa48AuyuDaaHpepYSEuAyVet1lSj434s
-zwLDDfjB3uBULjdq
-=KurG
------END PGP PUBLIC KEY BLOCK-----
diff --git a/repositories/unofficial.debian-maintainers.org b/repositories/unofficial.debian-maintainers.org
deleted file mode 100644
index 97093c4..0000000
--- a/repositories/unofficial.debian-maintainers.org
+++ /dev/null
@@ -1,3 +0,0 @@
-# Unofficial Maintainers
-deb http://unofficial.debian-maintainers.org/ @DISTRIBUTION@ @ARCHIVE_AREAS@ restricted
-deb-src http://unofficial.debian-maintainers.org/ @DISTRIBUTION@ @ARCHIVE_AREAS@ restricted
diff --git a/repositories/unofficial.debian-maintainers.org.gpg b/repositories/unofficial.debian-maintainers.org.gpg
deleted file mode 100644
index 7f9b836..0000000
--- a/repositories/unofficial.debian-maintainers.org.gpg
+++ /dev/null
@@ -1,20 +0,0 @@
------BEGIN PGP PUBLIC KEY BLOCK-----
-Version: GnuPG v1.4.9 (GNU/Linux)
-
-mQENBEtljiMBCADSIplButAWL0OuM4uvDtZYjBcPlQNjwQDZ/Dpg5QuRAgNSUdx7
-wBQOQXqC4LCi9ykpvYi8FEtz0bl60M9uJdc4n+130It8gSZs7Cn0WoFk7uo0S4IS
-79EQdP+yfZNv/vY11cv6TwOb7JEqB5BI7T642Y+UgQZnpT/Diykks986CYeZSfpm
-6gnASAEe0jJg79Zpzpc3kBECCwN6fIFZ4MOxkaXgvfhWsOS42s6zxtQXJ65njibR
-W47Klu75sxPS+5EKaS10C5+Tmv0XpV7S7s8VtRtKemMjYfLdsPmubmGcI+t/uEF7
-qT2zJLINSIIL01kpVBFpqxCmnO51XURgRqOFABEBAAG0Z2RlYmlhbi1tYWludGFp
-bmVycy5vcmcgQXJjaGl2ZSBBdXRvbWF0aWMgU2lnbmluZyBLZXkgKDIwMTAwMTAx
-KSA8c3lzYWRtaW5AbGlzdHMuZGViaWFuLW1haW50YWluZXJzLm9yZz6JAT4EEwEC
-ACgFAktljiMCGwMFCQHihQAGCwkIBwMCBhUIAgkKCwQWAgMBAh4BAheAAAoJEJ7r
-yNubnDy2BeUH/1SWIbqzIh2LkF1XK4iXyXGrzGlqtef5JX/tjaY7RC5gPVyZBP1V
-jHcozn7Sum09KxaijsgP/lIVZ2tnu9niT2Waz5GPgUv79bqjGc238gEhH5zpbun/
-WF6UapiINHNYLFx0f18ImQ1gU13hLn0PYvuyN/QKmxaPlcUQtNJc3/ZtyFA0nPpB
-ejiMEBxgw0H80FWSpawLKUFEStT1Y+khK0fZYVoWl0OwhJbsY/L6nBcfv27zH+5d
-g7VuNpRte7AyxZEufescwWILTjIq3K2v9XHAy7sJmstfycrHQFy/33hE4yRQcOyu
-bAMnNqLUp7mwqRw+KYPkAQo/DUlO//SsUKY=
-=+IFy
------END PGP PUBLIC KEY BLOCK-----
diff --git a/scripts/build/lb_config b/scripts/build/lb_config
index fa69271..bd6bd8d 100755
--- a/scripts/build/lb_config
+++ b/scripts/build/lb_config
@@ -1346,27 +1346,23 @@ then
 
 cat > config/chroot_sources/${LB_DISTRIBUTION}-backports.chroot << EOF
 # Backports Maintainers
-deb http://backports.debian-maintainers.org/ ${LB_DISTRIBUTION}/backports main contrib non-free
-deb-src http://backports.debian-maintainers.org/ ${LB_DISTRIBUTION}/backports main contrib non-free
+deb http://backports.debian.org/debian-backports/ ${LB_DISTRIBUTION}-backports ${LB_ARCHIVE_AREAS}
+deb-src http://backports.debian.org/debian-backports/ ${LB_DISTRIBUTION}-backports ${LB_ARCHIVE_AREAS}
 EOF
 
 	cp config/chroot_sources/${LB_DISTRIBUTION}-backports.chroot config/chroot_sources/${LB_DISTRIBUTION}-backports.binary
 
 	# Adding apt preferences
-	if ! grep -qs "^Pin: release o=backports.debian-maintainers.org" config/chroot_apt/preferences
+	if ! grep -qs "^Pin: release o=Debian Backports" config/chroot_apt/preferences
 	then
 
 cat >> config/chroot_apt/preferences << EOF
 Package: *
-Pin: release o=backports.debian-maintainers.org
+Pin: release o=Debian Backports
 Pin-Priority: 999
 EOF
 
 	fi
-
-	# Addding archive signing key
-	wget -q http://backports.debian-maintainers.org/project/openpgp/archive-key.asc -O config/chroot_sources/${LB_DISTRIBUTION}-backports.chroot.gpg
-	cp config/chroot_sources/${LB_DISTRIBUTION}-backports.chroot.gpg config/chroot_sources/${LB_DISTRIBUTION}-backports.binary.gpg
 fi
 
 # Checking defaults again
diff --git a/templates/cgi/debian-official/form.html b/templates/cgi/debian-official/form.html
index 4c8018d..7553a65 100644
--- a/templates/cgi/debian-official/form.html
+++ b/templates/cgi/debian-official/form.html
@@ -25,7 +25,7 @@
 			<td><label for="Binary_Images">--binary-images:</label> </td>
 			<td>
 				<select id="Binary_Images" name="binary_images" size="1">
-					<option selected value="iso">iso</option>
+					<option selected value="iso-hybrid">iso-hybrid</option>
 					<option value="net">net</option>
 					<option value="tar">tar</option>
 					<option value="usb-hdd">usb-hdd</option>
@@ -36,8 +36,8 @@
 			<td><label for="Distribution">--distribution:</label> </td>
 			<td>
 				<select id="Distribution" name="distribution" size="1">
-					<option selected value="lenny">lenny</option>
-					<option value="squeeze">squeeze</option>
+					<option selected value="squeeze">squeeze</option>
+					<option value="wheezy">wheezy</option>
 					<option value="sid">sid</option>
 				</select>
 			</td>
diff --git a/templates/cgi/debian-unofficial/form.html b/templates/cgi/debian-unofficial/form.html
index acb3ccf..ba4d912 100644
--- a/templates/cgi/debian-unofficial/form.html
+++ b/templates/cgi/debian-unofficial/form.html
@@ -24,7 +24,7 @@
 			<td><label for="Binary_Images">--binary-images:</label> </td>
 			<td>
 				<select id="Binary_Images" name="binary_images" size="1">
-					<option selected value="iso">iso</option>
+					<option selected value="iso-hybrid">iso-hybrid</option>
 					<option value="net">net</option>
 					<option value="tar">tar</option>
 					<option value="usb-hdd">usb-hdd</option>
@@ -35,8 +35,8 @@
 			<td><label for="Distribution">--distribution:</label> </td>
 			<td>
 				<select id="Distribution" name="distribution" size="1">
-					<option selected value="lenny">lenny</option>
-					<option value="squeeze">squeeze</option>
+					<option selected value="squeeze">squeeze</option>
+					<option value="wheezy">wheezy</option>
 					<option value="sid">sid</option>
 				</select>
 			</td>
diff --git a/templates/syslinux/menu/splash.png b/templates/syslinux/menu/splash.png
index b3877c5..6065918 100644
Binary files a/templates/syslinux/menu/splash.png and b/templates/syslinux/menu/splash.png differ

-- 
live-build



More information about the debian-live-changes mailing list