[SCM] live-build branch, upstream, updated. upstream/3.0_a52-1-g7f83872

Daniel Baumann daniel at debian.org
Thu Jul 19 02:19:06 UTC 2012


The following commit has been merged in the upstream branch:
commit 7f83872a4a534fa8a3bfa8b7e4ce97cdb3be4b03
Author: Daniel Baumann <daniel at debian.org>
Date:   Thu Jul 19 04:19:32 2012 +0200

    Adding upstream version 3.0~a53.

diff --git a/Makefile b/Makefile
index ce2fa29..b58e3db 100644
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,7 @@ SHELL := sh -e
 
 LANGUAGES = $(shell cd manpages/po && ls)
 
-SCRIPTS = frontends/cgi/live-build-cgi frontends/cgi/live-build-cgi.cron functions/* examples/*/*.sh examples/auto/* scripts/*.sh scripts/*/* share/hooks/*
+SCRIPTS = bin/* frontends/cgi/live-build-cgi frontends/cgi/live-build-cgi.cron functions/* examples/auto/* examples/hooks/* scripts/*.sh scripts/*/* share/hooks/*
 
 all: build
 
@@ -40,16 +40,19 @@ build:
 install:
 	# Installing shared data
 	mkdir -p $(DESTDIR)/usr/share/live/build
-	cp -r frontends/cgi data examples functions scripts includes package-lists templates VERSION $(DESTDIR)/usr/share/live/build
+	cp -r frontends/cgi data functions includes package-lists templates VERSION $(DESTDIR)/usr/share/live/build
 	cp -r share/* $(DESTDIR)/usr/share/live/build
 
 	# Installing executables
 	mkdir -p $(DESTDIR)/usr/bin
-	mv $(DESTDIR)/usr/share/live/build/scripts/build/lb $(DESTDIR)/usr/share/live/build/scripts/build/live-build $(DESTDIR)/usr/bin
+	cp -a bin/* $(DESTDIR)/usr/bin
+
+	mkdir -p $(DESTDIR)/usr/lib/live
+	cp -a scripts/* $(DESTDIR)/usr/lib/live
 
 	# Installing documentation
 	mkdir -p $(DESTDIR)/usr/share/doc/live-build
-	cp -r COPYING docs/* $(DESTDIR)/usr/share/doc/live-build
+	cp -r COPYING docs/* examples $(DESTDIR)/usr/share/doc/live-build
 
 	# Installing manpages
 	for MANPAGE in manpages/en/*; \
@@ -67,9 +70,6 @@ install:
 		done; \
 	done
 
-	# Installing logfile
-	mkdir -p $(DESTDIR)/var/log
-
 uninstall:
 	# Uninstalling shared data
 	rm -rf $(DESTDIR)/usr/share/live/build
diff --git a/VERSION b/VERSION
index e24ced9..1c9e243 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-3.0~a52-1
+3.0~a53-1
diff --git a/scripts/build/lb b/bin/lb
similarity index 83%
rename from scripts/build/lb
rename to bin/lb
index 2f23203..6c92b74 100755
--- a/scripts/build/lb
+++ b/bin/lb
@@ -11,7 +11,12 @@
 set -e
 
 # Including common functions
-. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+if [ -e "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh ]
+then
+	. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+else
+	. /usr/lib/live/build.sh
+fi
 
 # Setting static variables
 DESCRIPTION="$(Echo 'utility to build Debian Live systems')"
@@ -56,9 +61,9 @@ case "${1}" in
 		if [ -x "${LB_BASE}/scripts/build/${COMMAND}" ]
 		then
 			SCRIPT="${LB_BASE}/scripts/build/${COMMAND}"
-		elif [ -x /usr/share/live/build/scripts/build/${COMMAND} ]
+		elif [ -x /usr/lib/live/build/${COMMAND} ]
 		then
-			SCRIPT=/usr/share/live/build/scripts/build/"${COMMAND}"
+			SCRIPT=/usr/lib/live/build/"${COMMAND}"
 		elif [ -x "$(which ${COMMAND} 2>/dev/null)" ]
 		then
 			SCRIPT="${COMMAND}"
diff --git a/scripts/build/live-build b/bin/live-build
similarity index 100%
rename from scripts/build/live-build
rename to bin/live-build
diff --git a/examples/hooks/all_binary_debian-installer-banner.sh b/examples/hooks/all_binary_debian-installer-banner.sh
deleted file mode 100755
index 61c160c..0000000
--- a/examples/hooks/all_binary_debian-installer-banner.sh
+++ /dev/null
@@ -1,34 +0,0 @@
-#!/bin/sh
-
-# This is an binary hook for live-build(7) to overwrite the banner
-# in the graphical Debian Installer.
-# To enable it, copy or symlink this hook into your config/binary_local-hooks
-# directory and add a replacement banner.png at:
-#
-#  config/binary_debian-installer/banner.png
-#
-# The file should be a PNG image of dimensions 800 x 75.
-
-set -e
-
-if [ -e config/binary_debian-installer/banner.png ]
-then
-	TARGET_INITRD="binary/install/gtk/initrd.gz"
-	REPACK_TMPDIR="binary.initrd"
-
-	if [ -e "${TARGET_INITRD}" ]
-	then
-		# cpio does not have a "extract to directory", so we must change
-		# directory
-		mkdir -p ${REPACK_TMPDIR}
-		cd ${REPACK_TMPDIR}
-		gzip -d < ../${TARGET_INITRD} | cpio -i --make-directories --no-absolute-filenames
-
-		# Overwrite banner
-		cp ../config/binary_debian-installer/banner.png ./usr/share/graphics/logo_debian.png
-
-		find | cpio -H newc -o | gzip -9 > ../${TARGET_INITRD}
-		cd ..
-		rm -rf ${REPACK_TMPDIR}
-	fi
-fi
diff --git a/examples/hooks/all_binary_live-helper.sh b/examples/hooks/all_binary_live-helper.sh
deleted file mode 100755
index b60f4a3..0000000
--- a/examples/hooks/all_binary_live-helper.sh
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/bin/sh
-
-# This is a hook for live-build(7) to install live-build and its config into
-# the binary image.
-# To enable it, copy or symlink this hook into your config/chroot_local-hooks
-# directory.
-
-DIRECTORY="binary/tools/live"
-
-mkdir -p "${DIRECTORY}"
-
-cp -a config "${DIRECTORY}"
-
-if [ -e live-build ]
-then
-	cp -a live-build "${DIRECTORY}"
-else
-	mkdir -p "${DIRECTORY}"/live-build/bin
-	cp -a /usr/bin/lh* "${DIRECTORY}"/live-build/bin
-
-	cp -a /usr/share/live/build "${DIRECTORY}"/live-build/share
-
-	cp -a /usr/share/doc/live-build "${DIRECTORY}"/live-build/doc
-fi
diff --git a/examples/hooks/all_chroot_debian-live-pxe-server.sh b/examples/hooks/all_chroot_debian-live-pxe-server.sh
deleted file mode 100755
index cd31fe6..0000000
--- a/examples/hooks/all_chroot_debian-live-pxe-server.sh
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/sh
-
-## live-build(7) - System Build Scripts
-## Copyright (C) 2006-2012 Daniel Baumann <daniel at debian.org>
-##
-## live-build comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
-## This is free software, and you are welcome to redistribute it
-## under certain conditions; see COPYING for details.
-
-
-set -e
-
-# Adding symlink in /srv/tftp for debian-installer netboot images
-ARCHITECTURE="$(dpkg --print-architecture)"
-
-rm -rf /srv/tftp
-ln -s /usr/lib/debian-installer/images/${ARCHITECTURE}/text /srv/tftp
diff --git a/examples/hooks/all_chroot_hal-automount.sh b/examples/hooks/all_chroot_hal-automount.sh
deleted file mode 100755
index 2a66fe9..0000000
--- a/examples/hooks/all_chroot_hal-automount.sh
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/bin/sh
-
-# This is a hook for live-build(7) to enable automaunting with hal for block devices.
-#
-# To enable it, copy or symlink this hook into your config/chroot_local-hooks
-# directory.
-
-# Remove automount disabling
-rm -f /usr/share/hal/fdi/policy/10osvendor/debian-storage-policy-fixed-drives.fdi
-
-# Use ntfs-3g by default to mount ntfs partitions
-if [ -x /usr/bin/ntfs-3g ]
-then
-	rm -f /sbin/mount.ntfs
-	ln -s /usr/bin/ntfs-3g /sbin/mount.ntfs
-fi
diff --git a/examples/hooks/all_chroot_kernel-purge.sh b/examples/hooks/all_chroot_kernel-purge.sh
deleted file mode 100755
index 6d8204e..0000000
--- a/examples/hooks/all_chroot_kernel-purge.sh
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/sh
-
-# This is a hook for live-build(7) to remove any kernel except the newest one.
-# To enable it, copy or symlink this hook into your config/chroot_local-hooks
-# directory.
-
-for VERSION in $(basename $(ls /boot/vmlinuz-* | head -n-1) | sed -e 's|^vmlinuz-||g')
-do
-	echo apt-get remove --purge linux-image-${VERSION}
-done
diff --git a/examples/hooks/all_chroot_linux-modules.sh b/examples/hooks/all_chroot_linux-modules.sh
deleted file mode 100755
index 8b07294..0000000
--- a/examples/hooks/all_chroot_linux-modules.sh
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/sh
-
-# This is a hook for live-build(7) to add entries to /etc/modules.
-# To enable it, copy or symlink this hook into your config/chroot_local-hooks
-# directory.
-
-MODULES=""
-
-for MODULE in ${MODULES}
-do
-	if ! grep -qs /etc/modules ${MODULE}
-	then
-		echo ${MODULE} >> /etc/modules
-	fi
-done
diff --git a/examples/hooks/all_chroot_localepurge.sh b/examples/hooks/all_chroot_localepurge.sh
deleted file mode 100755
index d820330..0000000
--- a/examples/hooks/all_chroot_localepurge.sh
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/bin/sh
-
-# This is a hook for live-build(7) to install localepurge.
-# To enable it, copy or symlink this hook into your config/chroot_local-hooks
-# directory.
-#
-
-cat > /tmp/localepurge.preseed << EOF
-localepurge localepurge/nopurge multiselect en
-#localepurge localepurge/mandelete boolean true
-#localepurge localepurge/dontbothernew boolean false
-localepurge localepurge/showfreedspace boolean false
-#localepurge localepurge/quickndirtycalc boolean true
-#localepurge localepurge/verbose boolean false
-EOF
-debconf-set-selections < /tmp/localepurge.preseed
-rm -f /tmp/localepurge.preseed
-
-apt-get install --yes localepurge
-dpkg-reconfigure localepurge
-
-localepurge
diff --git a/examples/hooks/all_chroot_losetup-lukshome.sh b/examples/hooks/all_chroot_losetup-lukshome.sh
deleted file mode 100755
index f8492d7..0000000
--- a/examples/hooks/all_chroot_losetup-lukshome.sh
+++ /dev/null
@@ -1,495 +0,0 @@
-#!/bin/sh
-
-# This hook was based and adapted from:
-# http://lists.debian.org/debian-live/2009/04/msg00186.html
-# ---------------------------------------------------------
-#
-#
-# NOTE 1: this was not tested with persistent boot option,
-# but it seems logic that persistent and lukshome can't
-# coexist as boot options (because of snapshots and others), so lukshome
-# won't be executed if any persistent option is given on boot.
-#
-# NOTE 2: if using an USB key, it will eventualy end up failing someday.
-# You should backup the encrypted disk image file itself (luks-home.img) to
-# prevent loosing your data.
-#
-# This hook will create 3 files:
-#
-# /usr/local/sbin/create-lukshome-file.sh
-#	script to create an disk file image (luks-home.img) with a
-#	LUKS encrypted ext2 filesystem inside to be placed in a
-#	partition labeled lukshome.
-#
-# /usr/local/sbin/lukshome.sh
-#	detects a partition with lukshome label, updates fstab and crypttab so
-#	the encrypted file is mounted later in a loopback device (/dev/loopX).
-#	It also changes /etc/init.d/umountfs so the encrypted home is correctly
-#	umounted.
-#
-# /usr/share/initramfs-tools/scripts/live-bottom/13live_luks_home
-#	a live-boot hook to execute lukshome.sh script
-#	in initrd.
-#
-#
-# HOWTO lukshome
-# --------------
-#
-# First build your live system with this hook inside config/chroot_local-hooks/.
-# If you have an existing live-build build directory with a previous live
-# build, you might have to run
-#
-#	lh_clean
-#	lh_clean --stage
-#
-# to make sure this hook is included in the live system. Then (re)build your
-# live system.
-#
-#	lh_build
-#
-# After booting your (re)built live system, setup the encrypted losetup
-# filesystem to be used as /home using the instructions present in the
-# create-lukshome-file.sh script.
-#
-# Reboot and now use the "lukshome" boot option to mount the encrypted /home,
-# like when using "persistent" boot option with a home-rw file in some partition.
-#
-
-
-# install needed packages (in case apt recommends are off)
-# make sure that cryptsetup is installed
-echo "I: checking for cryptsetup."
-if [ ! -x /sbin/cryptsetup ]
-then
-	echo "I: installing cryptsetup."
-	DEBIAN_FRONTEND="dialog" apt-get install --yes --force-yes -y cryptsetup
-fi
-
-
-echo "I: to see how to use lukshome hook run create-lukshome-file.sh as root."
-echo "I: creating script /usr/local/sbin/create-lukshome-file.sh"
-cat > /usr/local/sbin/create-lukshome-file.sh << 'EOF'
-#!/bin/sh
-
-# This script will create an encrypted filesystem in a file to
-# be used as /home in a live system built with Debian Live Helper with
-# this hook in config/chroot_local-hooks/.
-#
-# The lukshome boot option will do the following:
-#	- search for a partition with label 'lukshome'
-#	  (btw, you can't use the live system partition itself)
-#	- mount the partition as /luks-home in the live system
-#	- open /luks-home/luks-home.img file as a loopback device (/dev/loop)
-#	- open the loopback device with cryptsetup
-#	- mount the encrypted filesystem as /home
-#
-# This script will only create the luks-home.img file. Next are details of how
-# to use this script.
-#
-# CAUTION! THIS CAN WIPE YOUR DATA, backup first!
-# Be sure to understand what you will do, or you can end up
-# wiping disks or partitions you don't want to!
-#
-# Login as root:
-#	$ sudo -i
-#
-# Create a mountpoint (don't use /mnt, it will be used by this script):
-#	# mkdir /media/target
-#
-# !!! ***  Skip the next line if you don't want to wipe a partition  *** !!!
-# !!! * Just change the partition label to 'lukshome' (without quotes) * !!!
-# Create an ext2 filesystem in a partition with 'lukshome' label:
-#	# mkfs.ext2 -L lukshome /dev/the_partition_to_be_used
-#
-# Mount the partition and cd into it:
-#	# mount /dev/the_partition_to_be_used /media/target
-#	# cd /media/target
-#
-# Create the encrypted file:
-#	# create-lukshome-file.sh
-#
-# The script is located in /usr/local/sbin/, so it's in root $PATH.
-# It will copy the directories in /home/* into the file.
-# Now return to $HOME to be able to umount the target partition:
-#	# cd
-#
-# Umount the target partition:
-#	# umount /media/target
-#
-# Reboot and use the "lukshome" boot option to mount the encrypted /home,
-# like in using "persistent" boot option with a home-rw file in some partition.
-#
-# To use another partition label use the following boot options:
-#	lukshome lukspart=partition_label
-#
-# If you want to use another filename instead of luks-home.img, rename (mv)
-# the file and use the following boot options:
-#	lukshome luksfile=filename
-#
-# Both boot options can be used at the same time, but always with lukshome:
-#	lukshome lukspart=partition_label luksfile=filename
-#
-# By default, if just the lukshome boot option is used, the script will
-# search for a partition labeled 'lukshome' and a file named 'luks-home.img'.
-#
-# Press Shift-PgUp/Shift-PgDn to scrool the instructions on the screen.
-
-
-# check if root/sudo
-if [ "${USER}" != "root" ]
-then
-	echo " ** Please run this script as root or with sudo."
-	exit 1
-fi
-
-# check if /mnt is available and empty
-mount | grep "/mnt" > /dev/null
-MNT_IS_MOUNTED=${?}
-if [ "${MNT_IS_MOUNTED}" == 0 ]
-then
-	echo "** ERROR: /mnt is mounted at the moment. Please umount it to use this script."
-	exit 1
-fi
-if [ "$(ls -A /mnt)" ]
-then
-	echo "** ERROR: /mnt is not empty. An empty /mnt is needed to use this script."
-	exit 1
-fi
-
-# check if /dev/mapper/luks-home is available
-if [ -f /dev/mapper/luks-home ]
-then
-	echo "** ERROR: /dev/mapper/luks-home is being used at the moment. Please run «cryptsetup remove luks-home» to use this script."
-	exit 1
-fi
-
-
-# show instructions
-echo ""
-echo "** Instructions to use create-lukshome-file.sh (this script):"
-sed -n '2,64p' /usr/local/sbin/create-lukshome-file.sh | sed 's/^.//'
-echo ""
-
-
-# proceed?
-echo "** Do you want to proceed with this script? (y/N)"
-read CONFIRM
-
-case "${CONFIRM}" in
-	y*|Y*)
-		echo ""
-	;;
-	*)
-		exit 0
-	;;
-esac
-
-
-# create file
-echo ""
-echo "** Please type the size of the file disk image."
-echo "Size of the file in MB: "
-read FILE_SIZE
-
-echo ""
-echo "** Creating file luks-home.img."
-echo "** Filling file image with /dev/urandom output. It will take some time."
-echo "(Edit this script to use /dev/random. It's known to be more secure but "
-echo "it will take a *very* long time to complete."
-dd if=/dev/urandom of=luks-home.img bs=1M count=${FILE_SIZE}
-# To use /dev/random comment the line above and uncomment the next line
-#dd if=/dev/random of=luks-home.img ibs=128 obs=128 count=$((8192*${FILE_SIZE}))
-# You might have to increase kernel entropy by moving the mouse, typing keyboard,
-# make the computer read the disk or use network connections.
-echo "** Done."
-echo ""
-
-# losetup
-FREE_LOSETUP=$(losetup -f)
-echo "** Using ${FREE_LOSETUP} to open luks-home.img"
-losetup ${FREE_LOSETUP} ./luks-home.img
-echo "** Done."
-echo ""
-
-# cryptsetup
-echo "** Running cryptsetup."
-echo ""
-echo "** luksFormat"
-cryptsetup luksFormat ${FREE_LOSETUP}
-EXIT_CODE=${?}
-if [ "${EXIT_CODE}" != 0 ]
-then
-	echo "** ERROR: Error while trying to format disk file image."
-	losetup -d ${FREE_LOSETUP}
-	exit 1
-fi
-echo ""
-
-echo "** luksOpen"
-cryptsetup luksOpen ${FREE_LOSETUP} luks-home
-EXIT_CODE=${?}
-if [ "${EXIT_CODE}" != 0 ]
-then
-	echo "** ERROR: Error while trying to open LUKS file image."
-	losetup -d ${FREE_LOSETUP}
-	exit 1
-fi
-echo ""
-
-# format encrypted filesystem
-echo "** Now formating /dev/mapper/luks-home"
-mkfs.ext2 /dev/mapper/luks-home
-EXIT_CODE=${?}
-if [ "${EXIT_CODE}" != 0 ]
-then
-	echo "** ERROR: Error while trying to format LUKS file."
-	cryptsetup remove luks-home
-	losetup -d ${FREE_LOSETUP}
-	exit 1
-fi
-echo ""
-
-# mount in /mnt
-echo "** Now mounting luks-home.img in /mnt"
-mount /dev/mapper/luks-home /mnt
-EXIT_CODE=${?}
-if [ "${EXIT_CODE}" != 0 ]
-then
-	echo "** ERROR: Error while trying to mount LUKS file in /mnt."
-	umount /mnt
-	cryptsetup remove luks-home
-	losetup -d ${FREE_LOSETUP}
-	exit 1
-fi
-echo ""
-
-# copy files
-HOME_DIR="/home/*"
-
-echo "** Copying ${HOME_DIR}."
-cp -rav ${HOME_DIR} /mnt
-EXIT_CODE=${?}
-if [ "${EXIT_CODE}" != 0 ]
-then
-	echo "** ERROR: Error while trying to copy files to /mnt."
-	umount /mnt
-	cryptsetup remove luks-home
-	losetup -d ${FREE_LOSETUP}
-	exit 1
-fi
-echo "** Done."
-echo ""
-
-echo "** All done."
-echo "** Closing losetup, cryptsetup and mounted /mnt."
-# umount and close
-umount /mnt
-cryptsetup remove luks-home
-losetup -d ${FREE_LOSETUP}
-echo "** The disk file image luks-home.img is done and ready. Move it into a partition"
-echo "** with 'lukshome' as label and reboot with lukshome boot option to use it."
-echo ""
-
-EOF
-
-chmod 0755 /usr/local/sbin/create-lukshome-file.sh
-
-
-
-echo "I: creating script /usr/local/sbin/lukshome.sh"
-cat > /usr/local/sbin/lukshome.sh << 'EOF'
-#!/bin/sh
-
-# this script is to be executed by a hook in live-boot. It searches
-# for a partition with 'lukshome' label, mounts it as /luks-home, then opens an
-# encrypted disk image file called luks-home.img as a loopback device, opens it
-# with cryptsetup and finally mounts the present filesystem as /home.
-# It also changes /etc/init.d/umountfs to umount the lukshome partition
-#  (/luks-home) and clear the loopback device on shutdown.
-
-# functions taken from live-helpers
-. /usr/share/initramfs-tools/scripts/live-helpers
-
-# set default values
-LUKSPART="lukshome"
-LUKSFILE="luks-home.img"
-
-# get boot option lukshome - adapted from live-helpers
-for ARGUMENT in $(cat /proc/cmdline)
-do
-	case "${ARGUMENT}" in
-		lukshome)
-			LUKSHOME=1
-			;;
-		luksfile=*)
-			LUKSFILE="${ARGUMENT#luksfile=}"
-			LUKSHOME=1
-			;;
-		lukspart=*)
-			LUKSPART="${ARGUMENT#lukspart=}"
-			LUKSHOME=1
-			;;
-
-	esac
-done
-
-CRYPTHOME=$(/sbin/blkid -L ${LUKSPART})
-
-# if no partition found, exit
-if [ -z "${CRYPTHOME}" ]
-then
-	echo "Could not find any partition with ${LUKSPART} label. "
-	echo "Proceeding with no encrypted /home."
-	exit 0
-fi
-
-# mount partition where file container is
-echo "Mounting /luks-home with ${CRYPTHOME}."
-mkdir -p /luks-home
-mount -t $(get_fstype "${CRYPTHOME}") "${CRYPTHOME}" /luks-home
-
-# mount losetup encrypted file
-FREE_LOOP="$(/sbin/losetup -f)"
-echo "Opening file /luks-home/${LUKSFILE} in ${FREE_LOOP}."
-
-if [ -f /luks-home/"${LUKSFILE}" ]
-then
-	/sbin/losetup ${FREE_LOOP} /luks-home/"${LUKSFILE}"
-
-	echo "Adding ${FREE_LOOP} home to /etc/crypttab and setting it as /home in /etc/fstab."
-
-	# update crypttab
-	echo "home	${FREE_LOOP}	none	luks,check,timeout" >> /etc/crypttab
-
-	# update fstab
-	echo "/dev/mapper/home	/home	ext2	defaults,noatime	0	0" >> /etc/fstab
-else
-	echo "Did not found any file named ${LUKSFILE} in ${CRYPTHOME}!"
-	echo "Proceeding with no encrypted /home."
-	sleep 2
-	umount -r /luks-home
-	exit 0
-fi
-
-# changes to /etc/init.d/umountfs to make /luks-home being umounted on shutdown
-sed -i 's/[\t]do_stop/CHANGE_HERE/' /etc/init.d/umountfs
-sed -i 's|CHANGE_HERE|	\
-	# added by lukshome hook -  umount \/luks-home to prevent busy device on shutdown \
-	LOOP_LUKSHOME=$(losetup -a \| grep luks-home \|cut -c 1-10) \
-	if [ -n ${LOOP_LUKSHOME} ] \
-	then \
-		umount -r -d \/home \
-		cryptsetup remove home \
-		losetup -d ${LOOP_LUKSHOME} \
-		umount -r \/luks-home \
-	fi \
-\
-	do_stop \
-|' /etc/init.d/umountfs
-
-EOF
-
-chmod 0755 /usr/local/sbin/lukshome.sh
-
-
-
-# scripts/live-bottom/13live_luks_home, right after 12fstab
-echo "I: creating /usr/share/initramfs-tools/scripts/live-bottom/13live_luks_home"
-
-cat > /usr/share/initramfs-tools/scripts/live-bottom/13live_luks_home << 'EOF'
-#!/bin/sh
-
-#set -e
-
-# initramfs-tools header
-
-PREREQ=""
-
-prereqs()
-{
-	echo "${PREREQ}"
-}
-
-case "${1}" in
-	prereqs)
-		prereqs
-		exit 0
-		;;
-esac
-
-. /scripts/live-functions
-
-# live-boot hook to use an disk image file with encrypted filesystem as /home.
-
-log_begin_msg "Executing losetup-lukshome"
-
-# get boot option lukshome - adapted from live-helpers
-for ARGUMENT in $(cat /proc/cmdline)
-do
-	case "${ARGUMENT}" in
-		lukshome)
-			LUKSHOME=1
-			;;
-		luksfile=*)
-			LUKSFILE="${ARGUMENT#luksfile=}"
-			LUKSHOME=1
-			;;
-		lukspart=*)
-			LUKSPART="${ARGUMENT#lukspart=}"
-			LUKSHOME=1
-			;;
-
-	esac
-done
-
-# don't use persistent* and lukshome
-if [ -n "${PERSISTENT}" ] && [  -n "${LUKSHOME}" ]
-then
-	echo "You should not use persistent and lukshome at the same time."
-	echo "Skipping lukshome. Persistent medium, if any, will be used instead."
-	log_end_msg
-	exit 0
-fi
-
-# if no lukshome boot option, exit
-if [ -z "${LUKSHOME}" ]
-then
-	log_end_msg
-	exit 0
-fi
-
-log_begin_msg "Executing lukshome.sh script."
-
-mount -o bind /sys /root/sys
-mount -o bind /proc /root/proc
-mount -o bind /dev /root/dev
-
-# lukshome.sh detects lukshome partition and file location, mounts it
-# and opens the file and then updates fstab and crypttab to use it as /home.
-chroot /root /usr/local/sbin/lukshome.sh
-
-umount /root/sys
-umount /root/proc
-umount /root/dev
-
-# delete the lukshome.sh script, not needed anymore
-# rm -f /root/usr/local/sbin/lukshome.sh
-
-log_end_msg
-
-EOF
-
-chmod 0755 /usr/share/initramfs-tools/scripts/live-bottom/13live_luks_home
-
-
-
-echo "I: update-initramfs to include 13live_luks_home."
-# if you already have installed the update-initramfs.sh hook, you can remove
-# this.
-
-for KERNEL in /boot/vmlinuz-*
-do
-	VERSION="$(basename ${KERNEL} | sed -e 's|vmlinuz-||')"
-
-	update-initramfs -k ${VERSION} -t -u
-done
diff --git a/examples/hooks/all_chroot_rt2570-modules.sh b/examples/hooks/all_chroot_rt2570-modules.sh
deleted file mode 100755
index b8ffdad..0000000
--- a/examples/hooks/all_chroot_rt2570-modules.sh
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/sh
-
-# This is a hook for live-build(7) to install ralink rt2570 drivers
-# To enable it, copy or symlink this hook into your config/chroot_local-hooks
-# directory.
-
-apt-get install --yes build-essential
-
-which module-assistant || apt-get install --yes module-assistant
-module-assistant update
-
-for KERNEL in /boot/vmlinuz-*
-do
-	VERSION="$(basename ${KERNEL} | sed -e 's|vmlinuz-||')"
-
-	module-assistant --non-inter --quiet auto-install rt2570-source -l ${VERSION}
-done
-
-module-assistant clean rt2570-source
diff --git a/examples/hooks/all_chroot_sun-java6.sh b/examples/hooks/all_chroot_sun-java6.sh
deleted file mode 100755
index a9f7482..0000000
--- a/examples/hooks/all_chroot_sun-java6.sh
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/bin/sh
-
-# This is a hook for live-build(7) to install sun-java.
-# To enable it, copy or symlink this hook into your config/chroot_local-hooks
-# directory.
-#
-# Note: This hook requires packages from the non-free category. Make sure you
-# enabled it in your configuration.
-
-# live-build sets DEBIAN_FRONTEND to 'noninteractive' to advise debconf to not
-# ask any questions while installing packages. Suns redistribution terms for
-# Java do not allow this, therefore we need to overwrite DEBIAN_FRONTEND for
-# this apt-get call only.
-
-# In case you do accept the license terms, you can also preseed the values
-# for a complete non-interactive build, by uncommenting the following three lines:
-
-#echo "sun-java6-bin shared/accepted-sun-dlj-v1-1 boolean true" > /root/preseed
-#debconf-set-selections < /root/preseed
-#rm -f /root/preseed
-
-DEBIAN_FRONTEND="dialog" apt-get install --yes sun-java6-bin sun-java6-demo \
-	sun-java6-fonts sun-java6-javadb sun-java6-jdk sun-java6-jre \
-	sun-java6-plugin sun-java6-source
-
-# Ensure that /tmp has the right permissions; apparently sun-java5-doc tampers
-# with it
-chmod 1777 /tmp
-
-# Set sun-java as default java
-update-alternatives --set java /usr/lib/jvm/java-6-sun/jre/bin/java
diff --git a/examples/hooks/all_chroot_sysvinit.sh b/examples/hooks/all_chroot_sysvinit.sh
deleted file mode 100755
index d8e4932..0000000
--- a/examples/hooks/all_chroot_sysvinit.sh
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/sh
-
-# Disable all
-for _FILE in /etc/init.d/*
-do
-	update-rc.d -f $(basename ${_FILE}) remove
-done
-
-# Re-enable all required (taken from -f standard chroot)
-for _PACKAGE in live-boot live-config console-common cron dpkg ifupdown initscripts kbd klogd libc6 libdevmapper1.02 libselinux1 libsepol1 login makedev module-init-tools netbase openbsd-inetd procps sudo sysklogd udev util-linux
-do
-	if [ -f /var/lib/dpkg/info/${_PACKAGE}.postinst ]
-	then
-		# Re-configure if existing
-		/var/lib/dpkg/info/${_PACKAGE}.postinst configure
-	fi
-done
diff --git a/examples/hooks/all_chroot_udev-generators.sh b/examples/hooks/all_chroot_udev-generators.sh
deleted file mode 100755
index 9a5fed2..0000000
--- a/examples/hooks/all_chroot_udev-generators.sh
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/bin/sh
-
-# This is a hook for live-build(7) to remove udev persistent device generator
-# rules.
-# To enable it, copy or symlink this hook into your config/chroot_local-hooks
-# directory.
-
-rm -f /etc/udev/rules.d/*persistent-net-generator.rules
diff --git a/examples/hooks/all_chroot_update-initramfs.sh b/examples/hooks/all_chroot_update-initramfs.sh
deleted file mode 100755
index b75b135..0000000
--- a/examples/hooks/all_chroot_update-initramfs.sh
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/sh
-
-# This is a hook for live-build(7) to rebuild the initramfs image.
-# To enable it, copy or symlink this hook into your config/chroot_local-hooks
-# directory.
-#
-# Note: You only want to use this hook if you have modified any initramfs-script
-# during the build and need to refresh the initrd.img for that purpose.
-
-for KERNEL in /boot/vmlinuz-*
-do
-	VERSION="$(basename ${KERNEL} | sed -e 's|vmlinuz-||')"
-
-	update-initramfs -k ${VERSION} -t -u
-done
diff --git a/examples/hooks/all_chroot_virtualbox-ose.sh b/examples/hooks/all_chroot_virtualbox-ose.sh
deleted file mode 100755
index e1dab4a..0000000
--- a/examples/hooks/all_chroot_virtualbox-ose.sh
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/bin/sh
-
-# This is a hook for live-build(7) to enable virtualbox-ose module.
-# To enable it, copy or symlink this hook into your config/chroot_local-hooks
-# directory.
-
-# Enabling loading of vboxdrv
-sed -i -e 's|^LOAD_VBOXDRV_MODULE=.*$|LOAD_VBOXDRV_MODULE=1|' /etc/default/virtualbox-ose
diff --git a/examples/hooks/all_chroot_minimal.sh b/examples/hooks/minimal.chroot
similarity index 100%
rename from examples/hooks/all_chroot_minimal.sh
rename to examples/hooks/minimal.chroot
diff --git a/examples/hooks/squeeze_chroot_okular-nodrm.sh b/examples/hooks/squeeze_chroot_okular-nodrm.sh
deleted file mode 100755
index 96ce094..0000000
--- a/examples/hooks/squeeze_chroot_okular-nodrm.sh
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/bin/sh
-
-# This is a hook for live-build(7) to configure KDE's PDF viewer to ignore
-# manipulation restriction on "DRM protect" PDF documents.
-#
-# To enable it, copy or symlink this hook into your config/chroot_local-hooks
-# directory.
-
-if [ -d /usr/share/kde4/config ]
-then
-	# KDE4 (squeeze/sid)
-
-cat > /usr/share/kde4/config/okularpartrc << EOF
-[General]
-ObeyDRM=false
-EOF
-
-fi
diff --git a/examples/hooks/all_chroot_stripped.sh b/examples/hooks/stripped.chroot
similarity index 100%
rename from examples/hooks/all_chroot_stripped.sh
rename to examples/hooks/stripped.chroot
diff --git a/examples/hooks/all_chroot_symlinks.sh b/examples/hooks/symlinks.chroot
similarity index 100%
rename from examples/hooks/all_chroot_symlinks.sh
rename to examples/hooks/symlinks.chroot
diff --git a/manpages/de/lb.de.1 b/manpages/de/lb.de.1
index 7925429..c627e6f 100644
--- a/manpages/de/lb.de.1
+++ b/manpages/de/lb.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-07\-18 3.0~a52\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb\fP \- wrapper for live\-build programs
diff --git a/manpages/de/lb_binary.de.1 b/manpages/de/lb_binary.de.1
index 7ecdd2b..631ee13 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 2012\-07\-18 3.0~a52\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_checksums.de.1 b/manpages/de/lb_binary_checksums.de.1
index cfa8fb9..3e5dfcb 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 2012\-07\-18 3.0~a52\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_checksums\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_chroot.de.1 b/manpages/de/lb_binary_chroot.de.1
index f55e78c..0d33ef2 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 2012\-07\-18 3.0~a52\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_chroot\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_debian-installer.de.1 b/manpages/de/lb_binary_debian-installer.de.1
index eae3496..f2f1b35 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 2012\-07\-18 3.0~a52\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_debian\-installer\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_disk.de.1 b/manpages/de/lb_binary_disk.de.1
index 2286737..9ca4543 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 2012\-07\-18 3.0~a52\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_disk\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_grub.de.1 b/manpages/de/lb_binary_grub.de.1
index 0696d84..5e170b9 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 2012\-07\-18 3.0~a52\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_grub\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_grub2.de.1 b/manpages/de/lb_binary_grub2.de.1
index 85651e1..a6c4583 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 2012\-07\-18 3.0~a52\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_grub2\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_hdd.de.1 b/manpages/de/lb_binary_hdd.de.1
index 8a0b982..d6642c1 100644
--- a/manpages/de/lb_binary_hdd.de.1
+++ b/manpages/de/lb_binary_hdd.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-07\-18 3.0~a52\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_hdd\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_hooks.de.1 b/manpages/de/lb_binary_hooks.de.1
index c1e6a86..8c50a07 100644
--- a/manpages/de/lb_binary_hooks.de.1
+++ b/manpages/de/lb_binary_hooks.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-07\-18 3.0~a52\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_local\-hooks\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_includes.de.1 b/manpages/de/lb_binary_includes.de.1
index eff2503..c9451ee 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 2012\-07\-18 3.0~a52\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_includes\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_iso.de.1 b/manpages/de/lb_binary_iso.de.1
index bbcf39e..6aa16fe 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 2012\-07\-18 3.0~a52\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_iso\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_linux-image.de.1 b/manpages/de/lb_binary_linux-image.de.1
index fafb623..56dc431 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 2012\-07\-18 3.0~a52\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_linux\-image\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_local-includes.de.1 b/manpages/de/lb_binary_local-includes.de.1
index 7ad1368..32e88aa 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 2012\-07\-18 3.0~a52\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_local\-includes\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_manifest.de.1 b/manpages/de/lb_binary_manifest.de.1
index 7329572..c97102a 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 2012\-07\-18 3.0~a52\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_manifest\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_memtest.de.1 b/manpages/de/lb_binary_memtest.de.1
index f6e3ba3..391b02a 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 2012\-07\-18 3.0~a52\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_memtest\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_netboot.de.1 b/manpages/de/lb_binary_netboot.de.1
index 8828cde..0277e25 100644
--- a/manpages/de/lb_binary_netboot.de.1
+++ b/manpages/de/lb_binary_netboot.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-07\-18 3.0~a52\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_net\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_rootfs.de.1 b/manpages/de/lb_binary_rootfs.de.1
index b2ad38f..2089781 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 2012\-07\-18 3.0~a52\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_rootfs\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_silo.de.1 b/manpages/de/lb_binary_silo.de.1
index b3132a5..5b7378d 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 2012\-07\-18 3.0~a52\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_silo\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_syslinux.de.1 b/manpages/de/lb_binary_syslinux.de.1
index 6a2715e..df184f0 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 2012\-07\-18 3.0~a52\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_syslinux\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_tar.de.1 b/manpages/de/lb_binary_tar.de.1
index 31d3638..cb76e09 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 2012\-07\-18 3.0~a52\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_tar\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_virtual-hdd.de.1 b/manpages/de/lb_binary_virtual-hdd.de.1
index d2270cc..9fe1aa5 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 2012\-07\-18 3.0~a52\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_virtual\-hdd\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_win32-loader.de.1 b/manpages/de/lb_binary_win32-loader.de.1
index f35592a..bd34351 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 2012\-07\-18 3.0~a52\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_win32\-loader\fP \- Complete the binary stage
diff --git a/manpages/de/lb_binary_yaboot.de.1 b/manpages/de/lb_binary_yaboot.de.1
index 17ccedc..f0ff541 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 2012\-07\-18 3.0~a52\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_yaboot\fP \- Complete the binary stage
diff --git a/manpages/de/lb_bootstrap.de.1 b/manpages/de/lb_bootstrap.de.1
index 5a49db1..e67307e 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 2012\-07\-18 3.0~a52\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb bootstrap\fP \- Complete the bootstrap stage
diff --git a/manpages/de/lb_bootstrap_cache.de.1 b/manpages/de/lb_bootstrap_cache.de.1
index 346a696..b903cca 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 2012\-07\-18 3.0~a52\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb bootstrap_cache\fP \- Complete the bootstrap stage
diff --git a/manpages/de/lb_bootstrap_cdebootstrap.de.1 b/manpages/de/lb_bootstrap_cdebootstrap.de.1
index e77e3b7..3ee41cc 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 2012\-07\-18 3.0~a52\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb bootstrap_cdebootstrap\fP \- Complete the bootstrap stage
diff --git a/manpages/de/lb_bootstrap_copy.de.1 b/manpages/de/lb_bootstrap_copy.de.1
index 74be4c2..cf0fda2 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 2012\-07\-18 3.0~a52\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb bootstrap_copy\fP \- Complete the bootstrap stage
diff --git a/manpages/de/lb_bootstrap_debootstrap.de.1 b/manpages/de/lb_bootstrap_debootstrap.de.1
index 6518281..a2182dd 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 2012\-07\-18 3.0~a52\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb bootstrap_debootstrap\fP \- Complete the bootstrap stage
diff --git a/manpages/de/lb_build.de.1 b/manpages/de/lb_build.de.1
index 5e0e560..72df2a1 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 2012\-07\-18 3.0~a52\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb build\fP \- Complete the bootstrap, chroot, binary, and source stages
diff --git a/manpages/de/lb_chroot.de.1 b/manpages/de/lb_chroot.de.1
index f865de9..9fb95a7 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 2012\-07\-18 3.0~a52\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_apt.de.1 b/manpages/de/lb_chroot_apt.de.1
index 30b69dd..da4d4cb 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 2012\-07\-18 3.0~a52\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_apt\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_archives.de.1 b/manpages/de/lb_chroot_archives.de.1
index 86ac054..01d4d92 100644
--- a/manpages/de/lb_chroot_archives.de.1
+++ b/manpages/de/lb_chroot_archives.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-07\-18 3.0~a52\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_archives\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_cache.de.1 b/manpages/de/lb_chroot_cache.de.1
index 8bbadb6..623818f 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 2012\-07\-18 3.0~a52\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_cache\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_debianchroot.de.1 b/manpages/de/lb_chroot_debianchroot.de.1
index 312c39f..2cc8679 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 2012\-07\-18 3.0~a52\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_debianchroot\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_devpts.de.1 b/manpages/de/lb_chroot_devpts.de.1
index 9d3081e..6427394 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 2012\-07\-18 3.0~a52\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_devpts\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_dpkg.de.1 b/manpages/de/lb_chroot_dpkg.de.1
index f8af612..d4d8b8a 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 2012\-07\-18 3.0~a52\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_dpkg\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_hacks.de.1 b/manpages/de/lb_chroot_hacks.de.1
index 09b1266..9512d89 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 2012\-07\-18 3.0~a52\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_hacks\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_hooks.de.1 b/manpages/de/lb_chroot_hooks.de.1
index 8324074..87156bf 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 2012\-07\-18 3.0~a52\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_hooks\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_hostname.de.1 b/manpages/de/lb_chroot_hostname.de.1
index ff9b4c2..ad043e7 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 2012\-07\-18 3.0~a52\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_hostname\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_hosts.de.1 b/manpages/de/lb_chroot_hosts.de.1
index 8e7a829..3b15342 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 2012\-07\-18 3.0~a52\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_hosts\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_install-packages.de.1 b/manpages/de/lb_chroot_install-packages.de.1
index e24aa0d..f8135ec 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 2012\-07\-18 3.0~a52\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_install\-packages\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_interactive.de.1 b/manpages/de/lb_chroot_interactive.de.1
index 02bdbfd..2aba8d7 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 2012\-07\-18 3.0~a52\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_interactive\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_linux-image.de.1 b/manpages/de/lb_chroot_linux-image.de.1
index d558032..717aec1 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 2012\-07\-18 3.0~a52\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_linux\-image\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_local-includes.de.1 b/manpages/de/lb_chroot_local-includes.de.1
index a5a26ed..da4099d 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 2012\-07\-18 3.0~a52\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_local\-includes\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_local-patches.de.1 b/manpages/de/lb_chroot_local-patches.de.1
index b67f8e5..0d02159 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 2012\-07\-18 3.0~a52\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_local\-patches\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_local-preseed.de.1 b/manpages/de/lb_chroot_local-preseed.de.1
index e116596..757eb81 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 2012\-07\-18 3.0~a52\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_local\-preseed\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_packagelists.de.1 b/manpages/de/lb_chroot_packagelists.de.1
index ef015db..94921dd 100644
--- a/manpages/de/lb_chroot_packagelists.de.1
+++ b/manpages/de/lb_chroot_packagelists.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-07\-18 3.0~a52\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_packagelists\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_packages.de.1 b/manpages/de/lb_chroot_packages.de.1
index f53ed10..2ccee81 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 2012\-07\-18 3.0~a52\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_packages\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_proc.de.1 b/manpages/de/lb_chroot_proc.de.1
index 2bb5472..0ddd6ef 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 2012\-07\-18 3.0~a52\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_proc\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_resolv.de.1 b/manpages/de/lb_chroot_resolv.de.1
index cf6b7de..cd3ef43 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 2012\-07\-18 3.0~a52\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_resolv\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_selinuxfs.de.1 b/manpages/de/lb_chroot_selinuxfs.de.1
index 1c07af6..9456548 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 2012\-07\-18 3.0~a52\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_selinuxfs\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_sysfs.de.1 b/manpages/de/lb_chroot_sysfs.de.1
index 9efd841..e4c0ccd 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 2012\-07\-18 3.0~a52\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_sysfs\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_sysv-rc.de.1 b/manpages/de/lb_chroot_sysv-rc.de.1
index 175aff5..8f51af1 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 2012\-07\-18 3.0~a52\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_sysv\-rc\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_task-lists.de.1 b/manpages/de/lb_chroot_task-lists.de.1
index acf7a80..6749aa3 100644
--- a/manpages/de/lb_chroot_task-lists.de.1
+++ b/manpages/de/lb_chroot_task-lists.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-07\-18 3.0~a52\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_task\-lists\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_chroot_upstart.de.1 b/manpages/de/lb_chroot_upstart.de.1
index 993ab25..4f25dcb 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 2012\-07\-18 3.0~a52\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_upstart\fP \- Complete the chroot stage
diff --git a/manpages/de/lb_clean.de.1 b/manpages/de/lb_clean.de.1
index b4cde18..b45acdd 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 2012\-07\-18 3.0~a52\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb clean\fP \- Clean build directory
diff --git a/manpages/de/lb_config.de.1 b/manpages/de/lb_config.de.1
index 83e747e..970abcb 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 2012\-07\-18 3.0~a52\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb config\fP \- Create config directory
diff --git a/manpages/de/lb_local.de.1 b/manpages/de/lb_local.de.1
index 1684ac3..e952304 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 2012\-07\-18 3.0~a52\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb local\fP \- wrapper for local live\-build programs
diff --git a/manpages/de/lb_source.de.1 b/manpages/de/lb_source.de.1
index 055b856..e307c99 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 2012\-07\-18 3.0~a52\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb source\fP \- Complete the source stage
diff --git a/manpages/de/lb_source_checksums.de.1 b/manpages/de/lb_source_checksums.de.1
index c9cebff..12bf95b 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 2012\-07\-18 3.0~a52\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb source_checksums\fP \- Complete the source stage
diff --git a/manpages/de/lb_source_debian-live.de.1 b/manpages/de/lb_source_debian-live.de.1
index bb0d0e8..3b0feb5 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 2012\-07\-18 3.0~a52\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb source_debian\-live\fP \- Complete the source stage
diff --git a/manpages/de/lb_source_debian.de.1 b/manpages/de/lb_source_debian.de.1
index 4730d5f..4c9675c 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 2012\-07\-18 3.0~a52\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb source_debian\fP \- Complete the source stage
diff --git a/manpages/de/lb_source_disk.de.1 b/manpages/de/lb_source_disk.de.1
index 4a5d027..3761267 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 2012\-07\-18 3.0~a52\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb source_disk\fP \- Complete the source stage
diff --git a/manpages/de/lb_source_hdd.de.1 b/manpages/de/lb_source_hdd.de.1
index 28c9411..e1ec66e 100644
--- a/manpages/de/lb_source_hdd.de.1
+++ b/manpages/de/lb_source_hdd.de.1
@@ -3,7 +3,7 @@
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
-.TH LIVE\-BUILD 1 2012\-07\-18 3.0~a52\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb source_hdd\fP \- Complete the source stage
diff --git a/manpages/de/lb_source_iso.de.1 b/manpages/de/lb_source_iso.de.1
index 939b04c..3066a66 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 2012\-07\-18 3.0~a52\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb source_iso\fP \- Complete the source stage
diff --git a/manpages/de/lb_source_tar.de.1 b/manpages/de/lb_source_tar.de.1
index 6571234..92ac2b9 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 2012\-07\-18 3.0~a52\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb source_tar\fP \- Complete the source stage
diff --git a/manpages/de/lb_source_virtual-hdd.de.1 b/manpages/de/lb_source_virtual-hdd.de.1
index a7f8014..c204479 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 2012\-07\-18 3.0~a52\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb source_virtual\-hdd\fP \- Complete the source stage
diff --git a/manpages/de/lb_testroot.de.1 b/manpages/de/lb_testroot.de.1
index 26e2f85..a15e822 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 2012\-07\-18 3.0~a52\-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
 
 .SH NAME
 \fBlb testroot\fP \- Ensure that a system is built as root
diff --git a/manpages/de/live-build.de.7 b/manpages/de/live-build.de.7
index 6a44a74..6ce3e56 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 2012\-07\-18 3.0~a52\-1 "Debian Live Project"
+.TH LIVE\-BUILD 7 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
 
 .SH NAME
 \fBlive\-build\fP \- the Debian Live tool suite
diff --git a/manpages/en/lb.1 b/manpages/en/lb.1
index 45fa614..f715bd2 100644
--- a/manpages/en/lb.1
+++ b/manpages/en/lb.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-07\-18 3.0~a52-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "Debian Live Project"
 
 .SH NAME
 \fBlb\fR \- wrapper for live\-build programs
diff --git a/manpages/en/lb_binary.1 b/manpages/en/lb_binary.1
index ae1e145..50b09dc 100644
--- a/manpages/en/lb_binary.1
+++ b/manpages/en/lb_binary.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-07\-18 3.0~a52-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "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 8a9b013..de9a6e0 100644
--- a/manpages/en/lb_binary_checksums.1
+++ b/manpages/en/lb_binary_checksums.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-07\-18 3.0~a52-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "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 3941797..425f067 100644
--- a/manpages/en/lb_binary_chroot.1
+++ b/manpages/en/lb_binary_chroot.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-07\-18 3.0~a52-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "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 f8c7ea3..8c8221d 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 2012\-07\-18 3.0~a52-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "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 d55762d..e9323f4 100644
--- a/manpages/en/lb_binary_disk.1
+++ b/manpages/en/lb_binary_disk.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-07\-18 3.0~a52-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_disk\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_grub.1 b/manpages/en/lb_binary_grub.1
index 53ff291..93ce269 100644
--- a/manpages/en/lb_binary_grub.1
+++ b/manpages/en/lb_binary_grub.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-07\-18 3.0~a52-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "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 5d96e38..51d80fc 100644
--- a/manpages/en/lb_binary_grub2.1
+++ b/manpages/en/lb_binary_grub2.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-07\-18 3.0~a52-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_grub2\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_hdd.1 b/manpages/en/lb_binary_hdd.1
index 64a5cfa..3eb36d3 100644
--- a/manpages/en/lb_binary_hdd.1
+++ b/manpages/en/lb_binary_hdd.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-07\-18 3.0~a52-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_hdd\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_hooks.1 b/manpages/en/lb_binary_hooks.1
index a4a1a94..f17b19b 100644
--- a/manpages/en/lb_binary_hooks.1
+++ b/manpages/en/lb_binary_hooks.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-07\-18 3.0~a52-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_local\-hooks\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_includes.1 b/manpages/en/lb_binary_includes.1
index 7c6c003..60f4a86 100644
--- a/manpages/en/lb_binary_includes.1
+++ b/manpages/en/lb_binary_includes.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-07\-18 3.0~a52-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "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 7359f1b..7863b91 100644
--- a/manpages/en/lb_binary_iso.1
+++ b/manpages/en/lb_binary_iso.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-07\-18 3.0~a52-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "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 02e2c5b..c2d0642 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 2012\-07\-18 3.0~a52-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_linux\-image\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_local-includes.1 b/manpages/en/lb_binary_local-includes.1
index ec9d1cf..acd5b94 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 2012\-07\-18 3.0~a52-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_local\-includes\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_manifest.1 b/manpages/en/lb_binary_manifest.1
index 0e7b7cb..be03ea7 100644
--- a/manpages/en/lb_binary_manifest.1
+++ b/manpages/en/lb_binary_manifest.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-07\-18 3.0~a52-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "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 4548611..ba9a5ef 100644
--- a/manpages/en/lb_binary_memtest.1
+++ b/manpages/en/lb_binary_memtest.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-07\-18 3.0~a52-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_memtest\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_netboot.1 b/manpages/en/lb_binary_netboot.1
index 9016c0d..ac7e073 100644
--- a/manpages/en/lb_binary_netboot.1
+++ b/manpages/en/lb_binary_netboot.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-07\-18 3.0~a52-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "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 ffd9cc5..b4bbb61 100644
--- a/manpages/en/lb_binary_rootfs.1
+++ b/manpages/en/lb_binary_rootfs.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-07\-18 3.0~a52-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "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 1ef39ce..b66a8f2 100644
--- a/manpages/en/lb_binary_silo.1
+++ b/manpages/en/lb_binary_silo.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-07\-18 3.0~a52-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "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 bc0b795..015e0d7 100644
--- a/manpages/en/lb_binary_syslinux.1
+++ b/manpages/en/lb_binary_syslinux.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-07\-18 3.0~a52-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "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 b44cadd..7e8a7e4 100644
--- a/manpages/en/lb_binary_tar.1
+++ b/manpages/en/lb_binary_tar.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-07\-18 3.0~a52-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "Debian Live Project"
 
 .SH NAME
 \fBlb binary_tar\fR \- Complete the binary stage
diff --git a/manpages/en/lb_binary_virtual-hdd.1 b/manpages/en/lb_binary_virtual-hdd.1
index f2ffcb1..1529c3d 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 2012\-07\-18 3.0~a52-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "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 07f622e..8d05ee9 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 2012\-07\-18 3.0~a52-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "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 d1e6f28..bf034ef 100644
--- a/manpages/en/lb_binary_yaboot.1
+++ b/manpages/en/lb_binary_yaboot.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-07\-18 3.0~a52-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "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 f2bcf6f..061804f 100644
--- a/manpages/en/lb_bootstrap.1
+++ b/manpages/en/lb_bootstrap.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-07\-18 3.0~a52-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "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 1807b64..f7ef0e2 100644
--- a/manpages/en/lb_bootstrap_cache.1
+++ b/manpages/en/lb_bootstrap_cache.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-07\-18 3.0~a52-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "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 3b92d45..5c73acf 100644
--- a/manpages/en/lb_bootstrap_cdebootstrap.1
+++ b/manpages/en/lb_bootstrap_cdebootstrap.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-07\-18 3.0~a52-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "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 2f8ed5f..d9e413e 100644
--- a/manpages/en/lb_bootstrap_copy.1
+++ b/manpages/en/lb_bootstrap_copy.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-07\-18 3.0~a52-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "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 f9f9b9c..9a1c08e 100644
--- a/manpages/en/lb_bootstrap_debootstrap.1
+++ b/manpages/en/lb_bootstrap_debootstrap.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-07\-18 3.0~a52-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "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 32783e3..b6ec36f 100644
--- a/manpages/en/lb_build.1
+++ b/manpages/en/lb_build.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-07\-18 3.0~a52-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "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 9f8b887..372f859 100644
--- a/manpages/en/lb_chroot.1
+++ b/manpages/en/lb_chroot.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-07\-18 3.0~a52-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "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 10145f1..a74b114 100644
--- a/manpages/en/lb_chroot_apt.1
+++ b/manpages/en/lb_chroot_apt.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-07\-18 3.0~a52-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_apt\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_archives.1 b/manpages/en/lb_chroot_archives.1
index 2dcc5e2..c9c7f43 100644
--- a/manpages/en/lb_chroot_archives.1
+++ b/manpages/en/lb_chroot_archives.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-07\-18 3.0~a52-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_archives\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_cache.1 b/manpages/en/lb_chroot_cache.1
index 6ae6e0e..f362cb3 100644
--- a/manpages/en/lb_chroot_cache.1
+++ b/manpages/en/lb_chroot_cache.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-07\-18 3.0~a52-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "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 00887bc..e77cc7a 100644
--- a/manpages/en/lb_chroot_debianchroot.1
+++ b/manpages/en/lb_chroot_debianchroot.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-07\-18 3.0~a52-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "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 5e3244a..f3c14ff 100644
--- a/manpages/en/lb_chroot_devpts.1
+++ b/manpages/en/lb_chroot_devpts.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-07\-18 3.0~a52-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "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 a7de57c..72c3f71 100644
--- a/manpages/en/lb_chroot_dpkg.1
+++ b/manpages/en/lb_chroot_dpkg.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-07\-18 3.0~a52-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "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 9acf353..f04fc51 100644
--- a/manpages/en/lb_chroot_hacks.1
+++ b/manpages/en/lb_chroot_hacks.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-07\-18 3.0~a52-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "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 c46f015..ddec012 100644
--- a/manpages/en/lb_chroot_hooks.1
+++ b/manpages/en/lb_chroot_hooks.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-07\-18 3.0~a52-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "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 c754367..4704937 100644
--- a/manpages/en/lb_chroot_hostname.1
+++ b/manpages/en/lb_chroot_hostname.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-07\-18 3.0~a52-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "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 96b8ff3..1698e56 100644
--- a/manpages/en/lb_chroot_hosts.1
+++ b/manpages/en/lb_chroot_hosts.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-07\-18 3.0~a52-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "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 cbda1d2..e8628f4 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 2012\-07\-18 3.0~a52-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "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 b9eedb1..842cc9d 100644
--- a/manpages/en/lb_chroot_interactive.1
+++ b/manpages/en/lb_chroot_interactive.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-07\-18 3.0~a52-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "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 c1bcbd0..07febe5 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 2012\-07\-18 3.0~a52-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_linux\-image\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_local-includes.1 b/manpages/en/lb_chroot_local-includes.1
index 2d631aa..042d6d1 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 2012\-07\-18 3.0~a52-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_local\-includes\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_local-patches.1 b/manpages/en/lb_chroot_local-patches.1
index e607924..9351c54 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 2012\-07\-18 3.0~a52-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "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 25b3131..e658811 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 2012\-07\-18 3.0~a52-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_local\-preseed\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_packagelists.1 b/manpages/en/lb_chroot_packagelists.1
index cf29640..7e21e81 100644
--- a/manpages/en/lb_chroot_packagelists.1
+++ b/manpages/en/lb_chroot_packagelists.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-07\-18 3.0~a52-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_packagelists\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_packages.1 b/manpages/en/lb_chroot_packages.1
index 6f50756..95d8fcb 100644
--- a/manpages/en/lb_chroot_packages.1
+++ b/manpages/en/lb_chroot_packages.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-07\-18 3.0~a52-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_packages\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_proc.1 b/manpages/en/lb_chroot_proc.1
index 5c3a1af..bbb5e56 100644
--- a/manpages/en/lb_chroot_proc.1
+++ b/manpages/en/lb_chroot_proc.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-07\-18 3.0~a52-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "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 102b6df..6799bf9 100644
--- a/manpages/en/lb_chroot_resolv.1
+++ b/manpages/en/lb_chroot_resolv.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-07\-18 3.0~a52-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "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 39f58b6..8f525ae 100644
--- a/manpages/en/lb_chroot_selinuxfs.1
+++ b/manpages/en/lb_chroot_selinuxfs.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-07\-18 3.0~a52-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_selinuxfs\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_sysfs.1 b/manpages/en/lb_chroot_sysfs.1
index a02b21f..5de23a5 100644
--- a/manpages/en/lb_chroot_sysfs.1
+++ b/manpages/en/lb_chroot_sysfs.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-07\-18 3.0~a52-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "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 f9d1043..2e5953c 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 2012\-07\-18 3.0~a52-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_sysv-rc\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_task-lists.1 b/manpages/en/lb_chroot_task-lists.1
index 870ed4a..52277f6 100644
--- a/manpages/en/lb_chroot_task-lists.1
+++ b/manpages/en/lb_chroot_task-lists.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-07\-18 3.0~a52-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "Debian Live Project"
 
 .SH NAME
 \fBlb chroot_task\-lists\fR \- Complete the chroot stage
diff --git a/manpages/en/lb_chroot_upstart.1 b/manpages/en/lb_chroot_upstart.1
index 85a8264..7e652bd 100644
--- a/manpages/en/lb_chroot_upstart.1
+++ b/manpages/en/lb_chroot_upstart.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-07\-18 3.0~a52-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "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 895c8d7..3b20588 100644
--- a/manpages/en/lb_clean.1
+++ b/manpages/en/lb_clean.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-07\-18 3.0~a52-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "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 36ab1e6..87dc7b2 100644
--- a/manpages/en/lb_config.1
+++ b/manpages/en/lb_config.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-07\-18 3.0~a52-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "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 03b2917..5d378ae 100644
--- a/manpages/en/lb_local.1
+++ b/manpages/en/lb_local.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-07\-18 3.0~a52-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "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 e4d649f..efc3359 100644
--- a/manpages/en/lb_source.1
+++ b/manpages/en/lb_source.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-07\-18 3.0~a52-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "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 31b6bc9..ab6dbfd 100644
--- a/manpages/en/lb_source_checksums.1
+++ b/manpages/en/lb_source_checksums.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-07\-18 3.0~a52-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "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 71645c7..60da60c 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 2012\-07\-18 3.0~a52-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "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 081cebe..601ee7a 100644
--- a/manpages/en/lb_source_debian.1
+++ b/manpages/en/lb_source_debian.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-07\-18 3.0~a52-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "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 fcf3a0b..e0f36b8 100644
--- a/manpages/en/lb_source_disk.1
+++ b/manpages/en/lb_source_disk.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-07\-18 3.0~a52-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "Debian Live Project"
 
 .SH NAME
 \fBlb source_disk\fR \- Complete the source stage
diff --git a/manpages/en/lb_source_hdd.1 b/manpages/en/lb_source_hdd.1
index 2e2a223..b9393e7 100644
--- a/manpages/en/lb_source_hdd.1
+++ b/manpages/en/lb_source_hdd.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-07\-18 3.0~a52-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "Debian Live Project"
 
 .SH NAME
 \fBlb source_hdd\fR \- Complete the source stage
diff --git a/manpages/en/lb_source_iso.1 b/manpages/en/lb_source_iso.1
index ab9d286..1ac65ca 100644
--- a/manpages/en/lb_source_iso.1
+++ b/manpages/en/lb_source_iso.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-07\-18 3.0~a52-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "Debian Live Project"
 
 .SH NAME
 \fBlb source_iso\fR \- Complete the source stage
diff --git a/manpages/en/lb_source_tar.1 b/manpages/en/lb_source_tar.1
index c4d966c..ca89a8f 100644
--- a/manpages/en/lb_source_tar.1
+++ b/manpages/en/lb_source_tar.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-07\-18 3.0~a52-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "Debian Live Project"
 
 .SH NAME
 \fBlb source_tar\fR \- Complete the source stage
diff --git a/manpages/en/lb_source_virtual-hdd.1 b/manpages/en/lb_source_virtual-hdd.1
index 5d8f0ad..fd5f6b1 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 2012\-07\-18 3.0~a52-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "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 ca0ea63..b07cab8 100644
--- a/manpages/en/lb_testroot.1
+++ b/manpages/en/lb_testroot.1
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 1 2012\-07\-18 3.0~a52-1 "Debian Live Project"
+.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "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 b67ce67..3f21612 100644
--- a/manpages/en/live-build.7
+++ b/manpages/en/live-build.7
@@ -1,4 +1,4 @@
-.TH LIVE\-BUILD 7 2012\-07\-18 3.0~a52-1 "Debian Live Project"
+.TH LIVE\-BUILD 7 2012\-07\-19 3.0~a53-1 "Debian Live Project"
 
 .SH NAME
 \fBlive\-build\fR \- the Debian Live tool suite
diff --git a/manpages/po/de/lb.1.po b/manpages/po/de/lb.1.po
index cdfafdd..f5289c2 100644
--- a/manpages/po/de/lb.1.po
+++ b/manpages/po/de/lb.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_binary.1.po b/manpages/po/de/lb_binary.1.po
index a54d688..3c857a1 100644
--- a/manpages/po/de/lb_binary.1.po
+++ b/manpages/po/de/lb_binary.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_binary_checksums.1.po b/manpages/po/de/lb_binary_checksums.1.po
index 839cf67..b52a772 100644
--- a/manpages/po/de/lb_binary_checksums.1.po
+++ b/manpages/po/de/lb_binary_checksums.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_binary_chroot.1.po b/manpages/po/de/lb_binary_chroot.1.po
index 15482e7..295f85a 100644
--- a/manpages/po/de/lb_binary_chroot.1.po
+++ b/manpages/po/de/lb_binary_chroot.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 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 2accbe9..fb5df28 100644
--- a/manpages/po/de/lb_binary_debian-installer.1.po
+++ b/manpages/po/de/lb_binary_debian-installer.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_binary_disk.1.po b/manpages/po/de/lb_binary_disk.1.po
index 5de7952..ecf0a56 100644
--- a/manpages/po/de/lb_binary_disk.1.po
+++ b/manpages/po/de/lb_binary_disk.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_binary_grub.1.po b/manpages/po/de/lb_binary_grub.1.po
index 8c08ae0..50f199b 100644
--- a/manpages/po/de/lb_binary_grub.1.po
+++ b/manpages/po/de/lb_binary_grub.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_binary_grub2.1.po b/manpages/po/de/lb_binary_grub2.1.po
index 71ca15a..0a54198 100644
--- a/manpages/po/de/lb_binary_grub2.1.po
+++ b/manpages/po/de/lb_binary_grub2.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_binary_hdd.1.po b/manpages/po/de/lb_binary_hdd.1.po
index 5a938d7..4f01780 100644
--- a/manpages/po/de/lb_binary_hdd.1.po
+++ b/manpages/po/de/lb_binary_hdd.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_binary_hooks.1.po b/manpages/po/de/lb_binary_hooks.1.po
index edf2e4f..c2ac4bc 100644
--- a/manpages/po/de/lb_binary_hooks.1.po
+++ b/manpages/po/de/lb_binary_hooks.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_binary_includes.1.po b/manpages/po/de/lb_binary_includes.1.po
index 9cabd40..4a752ae 100644
--- a/manpages/po/de/lb_binary_includes.1.po
+++ b/manpages/po/de/lb_binary_includes.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_binary_iso.1.po b/manpages/po/de/lb_binary_iso.1.po
index 438b931..32e12b8 100644
--- a/manpages/po/de/lb_binary_iso.1.po
+++ b/manpages/po/de/lb_binary_iso.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 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 f1c812d..6ff496a 100644
--- a/manpages/po/de/lb_binary_linux-image.1.po
+++ b/manpages/po/de/lb_binary_linux-image.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 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 8e4d72b..fd4b66f 100644
--- a/manpages/po/de/lb_binary_local-includes.1.po
+++ b/manpages/po/de/lb_binary_local-includes.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_binary_manifest.1.po b/manpages/po/de/lb_binary_manifest.1.po
index b7567e0..ff52ee6 100644
--- a/manpages/po/de/lb_binary_manifest.1.po
+++ b/manpages/po/de/lb_binary_manifest.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_binary_memtest.1.po b/manpages/po/de/lb_binary_memtest.1.po
index a629ad0..720ed4f 100644
--- a/manpages/po/de/lb_binary_memtest.1.po
+++ b/manpages/po/de/lb_binary_memtest.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_binary_netboot.1.po b/manpages/po/de/lb_binary_netboot.1.po
index 1404807..6005b73 100644
--- a/manpages/po/de/lb_binary_netboot.1.po
+++ b/manpages/po/de/lb_binary_netboot.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+0300\n"
 "PO-Revision-Date: 2012-07-18 19:25+0300\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_binary_rootfs.1.po b/manpages/po/de/lb_binary_rootfs.1.po
index 7b70221..99a744b 100644
--- a/manpages/po/de/lb_binary_rootfs.1.po
+++ b/manpages/po/de/lb_binary_rootfs.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_binary_silo.1.po b/manpages/po/de/lb_binary_silo.1.po
index 13d74a8..fbb5e82 100644
--- a/manpages/po/de/lb_binary_silo.1.po
+++ b/manpages/po/de/lb_binary_silo.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_binary_syslinux.1.po b/manpages/po/de/lb_binary_syslinux.1.po
index 2cd263c..50b67fd 100644
--- a/manpages/po/de/lb_binary_syslinux.1.po
+++ b/manpages/po/de/lb_binary_syslinux.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_binary_tar.1.po b/manpages/po/de/lb_binary_tar.1.po
index 9c193c2..7ff5d24 100644
--- a/manpages/po/de/lb_binary_tar.1.po
+++ b/manpages/po/de/lb_binary_tar.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 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 88cd6a0..05054cd 100644
--- a/manpages/po/de/lb_binary_virtual-hdd.1.po
+++ b/manpages/po/de/lb_binary_virtual-hdd.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 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 c5ce195..369440a 100644
--- a/manpages/po/de/lb_binary_win32-loader.1.po
+++ b/manpages/po/de/lb_binary_win32-loader.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_binary_yaboot.1.po b/manpages/po/de/lb_binary_yaboot.1.po
index f03591f..a486e98 100644
--- a/manpages/po/de/lb_binary_yaboot.1.po
+++ b/manpages/po/de/lb_binary_yaboot.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_bootstrap.1.po b/manpages/po/de/lb_bootstrap.1.po
index d645e50..1946de9 100644
--- a/manpages/po/de/lb_bootstrap.1.po
+++ b/manpages/po/de/lb_bootstrap.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_bootstrap_cache.1.po b/manpages/po/de/lb_bootstrap_cache.1.po
index 3bc04e8..3db3f11 100644
--- a/manpages/po/de/lb_bootstrap_cache.1.po
+++ b/manpages/po/de/lb_bootstrap_cache.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_bootstrap_cdebootstrap.1.po b/manpages/po/de/lb_bootstrap_cdebootstrap.1.po
index 9f0b580..ef53bf1 100644
--- a/manpages/po/de/lb_bootstrap_cdebootstrap.1.po
+++ b/manpages/po/de/lb_bootstrap_cdebootstrap.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_bootstrap_copy.1.po b/manpages/po/de/lb_bootstrap_copy.1.po
index 6ce813e..71b2c6e 100644
--- a/manpages/po/de/lb_bootstrap_copy.1.po
+++ b/manpages/po/de/lb_bootstrap_copy.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_bootstrap_debootstrap.1.po b/manpages/po/de/lb_bootstrap_debootstrap.1.po
index eed6cb7..60a8a7a 100644
--- a/manpages/po/de/lb_bootstrap_debootstrap.1.po
+++ b/manpages/po/de/lb_bootstrap_debootstrap.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_build.1.po b/manpages/po/de/lb_build.1.po
index d91989e..fbf0d3a 100644
--- a/manpages/po/de/lb_build.1.po
+++ b/manpages/po/de/lb_build.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot.1.po b/manpages/po/de/lb_chroot.1.po
index 757abea..4df07e7 100644
--- a/manpages/po/de/lb_chroot.1.po
+++ b/manpages/po/de/lb_chroot.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_apt.1.po b/manpages/po/de/lb_chroot_apt.1.po
index bd6a3a1..57206d1 100644
--- a/manpages/po/de/lb_chroot_apt.1.po
+++ b/manpages/po/de/lb_chroot_apt.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_archives.1.po b/manpages/po/de/lb_chroot_archives.1.po
index 0857d05..9acfc59 100644
--- a/manpages/po/de/lb_chroot_archives.1.po
+++ b/manpages/po/de/lb_chroot_archives.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_cache.1.po b/manpages/po/de/lb_chroot_cache.1.po
index 57474df..8be064a 100644
--- a/manpages/po/de/lb_chroot_cache.1.po
+++ b/manpages/po/de/lb_chroot_cache.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_debianchroot.1.po b/manpages/po/de/lb_chroot_debianchroot.1.po
index 3727d11..2ad266e 100644
--- a/manpages/po/de/lb_chroot_debianchroot.1.po
+++ b/manpages/po/de/lb_chroot_debianchroot.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_devpts.1.po b/manpages/po/de/lb_chroot_devpts.1.po
index 5d76310..13ad408 100644
--- a/manpages/po/de/lb_chroot_devpts.1.po
+++ b/manpages/po/de/lb_chroot_devpts.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_dpkg.1.po b/manpages/po/de/lb_chroot_dpkg.1.po
index 219bb59..a650031 100644
--- a/manpages/po/de/lb_chroot_dpkg.1.po
+++ b/manpages/po/de/lb_chroot_dpkg.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_hacks.1.po b/manpages/po/de/lb_chroot_hacks.1.po
index 544cbc1..752ae5e 100644
--- a/manpages/po/de/lb_chroot_hacks.1.po
+++ b/manpages/po/de/lb_chroot_hacks.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_hooks.1.po b/manpages/po/de/lb_chroot_hooks.1.po
index a740cc6..d63340e 100644
--- a/manpages/po/de/lb_chroot_hooks.1.po
+++ b/manpages/po/de/lb_chroot_hooks.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_hostname.1.po b/manpages/po/de/lb_chroot_hostname.1.po
index a9ac888..5585c68 100644
--- a/manpages/po/de/lb_chroot_hostname.1.po
+++ b/manpages/po/de/lb_chroot_hostname.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_hosts.1.po b/manpages/po/de/lb_chroot_hosts.1.po
index 9985192..ea0c60b 100644
--- a/manpages/po/de/lb_chroot_hosts.1.po
+++ b/manpages/po/de/lb_chroot_hosts.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 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 b8d6185..5c37417 100644
--- a/manpages/po/de/lb_chroot_install-packages.1.po
+++ b/manpages/po/de/lb_chroot_install-packages.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_interactive.1.po b/manpages/po/de/lb_chroot_interactive.1.po
index f169c00..29fa848 100644
--- a/manpages/po/de/lb_chroot_interactive.1.po
+++ b/manpages/po/de/lb_chroot_interactive.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 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 0d613e8..83954e8 100644
--- a/manpages/po/de/lb_chroot_linux-image.1.po
+++ b/manpages/po/de/lb_chroot_linux-image.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 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 b732ce8..3dfd1c4 100644
--- a/manpages/po/de/lb_chroot_local-includes.1.po
+++ b/manpages/po/de/lb_chroot_local-includes.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 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 2767179..0db5a3d 100644
--- a/manpages/po/de/lb_chroot_local-patches.1.po
+++ b/manpages/po/de/lb_chroot_local-patches.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 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 b8da485..dd162fb 100644
--- a/manpages/po/de/lb_chroot_local-preseed.1.po
+++ b/manpages/po/de/lb_chroot_local-preseed.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_packagelists.1.po b/manpages/po/de/lb_chroot_packagelists.1.po
index 628b0de..3e17a3f 100644
--- a/manpages/po/de/lb_chroot_packagelists.1.po
+++ b/manpages/po/de/lb_chroot_packagelists.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_packages.1.po b/manpages/po/de/lb_chroot_packages.1.po
index 4c10fcb..7e5f519 100644
--- a/manpages/po/de/lb_chroot_packages.1.po
+++ b/manpages/po/de/lb_chroot_packages.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_proc.1.po b/manpages/po/de/lb_chroot_proc.1.po
index 009fa24..6e5c025 100644
--- a/manpages/po/de/lb_chroot_proc.1.po
+++ b/manpages/po/de/lb_chroot_proc.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_resolv.1.po b/manpages/po/de/lb_chroot_resolv.1.po
index 0e89e38..24317c3 100644
--- a/manpages/po/de/lb_chroot_resolv.1.po
+++ b/manpages/po/de/lb_chroot_resolv.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_selinuxfs.1.po b/manpages/po/de/lb_chroot_selinuxfs.1.po
index 90bace1..fc33274 100644
--- a/manpages/po/de/lb_chroot_selinuxfs.1.po
+++ b/manpages/po/de/lb_chroot_selinuxfs.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_sysfs.1.po b/manpages/po/de/lb_chroot_sysfs.1.po
index d08a4cf..1ae192f 100644
--- a/manpages/po/de/lb_chroot_sysfs.1.po
+++ b/manpages/po/de/lb_chroot_sysfs.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 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 3a0b5e0..be69671 100644
--- a/manpages/po/de/lb_chroot_sysv-rc.1.po
+++ b/manpages/po/de/lb_chroot_sysv-rc.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_task-lists.1.po b/manpages/po/de/lb_chroot_task-lists.1.po
index eba43b6..0558db9 100644
--- a/manpages/po/de/lb_chroot_task-lists.1.po
+++ b/manpages/po/de/lb_chroot_task-lists.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_chroot_upstart.1.po b/manpages/po/de/lb_chroot_upstart.1.po
index ab045ff..72b37b0 100644
--- a/manpages/po/de/lb_chroot_upstart.1.po
+++ b/manpages/po/de/lb_chroot_upstart.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_clean.1.po b/manpages/po/de/lb_clean.1.po
index 5ac361b..034fe15 100644
--- a/manpages/po/de/lb_clean.1.po
+++ b/manpages/po/de/lb_clean.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_config.1.po b/manpages/po/de/lb_config.1.po
index 3bdc64a..eb5adb2 100644
--- a/manpages/po/de/lb_config.1.po
+++ b/manpages/po/de/lb_config.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_local.1.po b/manpages/po/de/lb_local.1.po
index 7073593..e94f8e3 100644
--- a/manpages/po/de/lb_local.1.po
+++ b/manpages/po/de/lb_local.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_source.1.po b/manpages/po/de/lb_source.1.po
index 6cadaa4..000a854 100644
--- a/manpages/po/de/lb_source.1.po
+++ b/manpages/po/de/lb_source.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_source_checksums.1.po b/manpages/po/de/lb_source_checksums.1.po
index 5a4b3d5..4593449 100644
--- a/manpages/po/de/lb_source_checksums.1.po
+++ b/manpages/po/de/lb_source_checksums.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 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 beed346..2fc4dad 100644
--- a/manpages/po/de/lb_source_debian-live.1.po
+++ b/manpages/po/de/lb_source_debian-live.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_source_debian.1.po b/manpages/po/de/lb_source_debian.1.po
index 3a2d8a7..5c458ae 100644
--- a/manpages/po/de/lb_source_debian.1.po
+++ b/manpages/po/de/lb_source_debian.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_source_disk.1.po b/manpages/po/de/lb_source_disk.1.po
index 79b17d7..8fd2023 100644
--- a/manpages/po/de/lb_source_disk.1.po
+++ b/manpages/po/de/lb_source_disk.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_source_hdd.1.po b/manpages/po/de/lb_source_hdd.1.po
index 58a3ec9..ed65f2b 100644
--- a/manpages/po/de/lb_source_hdd.1.po
+++ b/manpages/po/de/lb_source_hdd.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_source_iso.1.po b/manpages/po/de/lb_source_iso.1.po
index 669ad6e..cf58b18 100644
--- a/manpages/po/de/lb_source_iso.1.po
+++ b/manpages/po/de/lb_source_iso.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_source_tar.1.po b/manpages/po/de/lb_source_tar.1.po
index 7cc01df..017e0e9 100644
--- a/manpages/po/de/lb_source_tar.1.po
+++ b/manpages/po/de/lb_source_tar.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 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 fb4ccd5..e6f267b 100644
--- a/manpages/po/de/lb_source_virtual-hdd.1.po
+++ b/manpages/po/de/lb_source_virtual-hdd.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/lb_testroot.1.po b/manpages/po/de/lb_testroot.1.po
index c1cb084..7b0af88 100644
--- a/manpages/po/de/lb_testroot.1.po
+++ b/manpages/po/de/lb_testroot.1.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/po/de/live-build.7.po b/manpages/po/de/live-build.7.po
index a661ead..7b430e1 100644
--- a/manpages/po/de/live-build.7.po
+++ b/manpages/po/de/live-build.7.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+0300\n"
 "PO-Revision-Date: 2012-02-04 21:39+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb.1.pot b/manpages/pot/lb.1.pot
index 5652d74..0b5a381 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: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_binary.1.pot b/manpages/pot/lb_binary.1.pot
index 0a6026c..a160b34 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: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_binary_checksums.1.pot b/manpages/pot/lb_binary_checksums.1.pot
index 3069380..afc2e0d 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: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_binary_chroot.1.pot b/manpages/pot/lb_binary_chroot.1.pot
index a4ba0de..7422558 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: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_binary_debian-installer.1.pot b/manpages/pot/lb_binary_debian-installer.1.pot
index 7acaebd..f99b83b 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: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_binary_disk.1.pot b/manpages/pot/lb_binary_disk.1.pot
index be79840..8f3651b 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: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_binary_grub.1.pot b/manpages/pot/lb_binary_grub.1.pot
index 26b090c..0c689cb 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: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_binary_grub2.1.pot b/manpages/pot/lb_binary_grub2.1.pot
index b4c7144..afa9d01 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: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_binary_hdd.1.pot b/manpages/pot/lb_binary_hdd.1.pot
index 3c62b8c..2e57a54 100644
--- a/manpages/pot/lb_binary_hdd.1.pot
+++ b/manpages/pot/lb_binary_hdd.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_binary_hooks.1.pot b/manpages/pot/lb_binary_hooks.1.pot
index 84cde61..232e601 100644
--- a/manpages/pot/lb_binary_hooks.1.pot
+++ b/manpages/pot/lb_binary_hooks.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_binary_includes.1.pot b/manpages/pot/lb_binary_includes.1.pot
index dab3d02..7dd75e2 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: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_binary_iso.1.pot b/manpages/pot/lb_binary_iso.1.pot
index eb6fd7c..a128bd3 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: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_binary_linux-image.1.pot b/manpages/pot/lb_binary_linux-image.1.pot
index 7bfb9cc..e879dcf 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: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_binary_local-includes.1.pot b/manpages/pot/lb_binary_local-includes.1.pot
index 230f574..643c5dc 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: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_binary_manifest.1.pot b/manpages/pot/lb_binary_manifest.1.pot
index 3ca0295..baa368d 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: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_binary_memtest.1.pot b/manpages/pot/lb_binary_memtest.1.pot
index fab8c95..9f7a496 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: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_binary_netboot.1.pot b/manpages/pot/lb_binary_netboot.1.pot
index b5e2ffd..eae99a7 100644
--- a/manpages/pot/lb_binary_netboot.1.pot
+++ b/manpages/pot/lb_binary_netboot.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_binary_rootfs.1.pot b/manpages/pot/lb_binary_rootfs.1.pot
index 69ebafc..9b9192f 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: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_binary_silo.1.pot b/manpages/pot/lb_binary_silo.1.pot
index 65584c4..5f539d9 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: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_binary_syslinux.1.pot b/manpages/pot/lb_binary_syslinux.1.pot
index d0ac3ff..035df4e 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: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_binary_tar.1.pot b/manpages/pot/lb_binary_tar.1.pot
index c1a9add..73040d2 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: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_binary_virtual-hdd.1.pot b/manpages/pot/lb_binary_virtual-hdd.1.pot
index a44e9fb..90f1431 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: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_binary_win32-loader.1.pot b/manpages/pot/lb_binary_win32-loader.1.pot
index feb4e1d..3c00a8e 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: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_binary_yaboot.1.pot b/manpages/pot/lb_binary_yaboot.1.pot
index 102fb61..692804a 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: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_bootstrap.1.pot b/manpages/pot/lb_bootstrap.1.pot
index 4648868..2e4a8e4 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: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_bootstrap_cache.1.pot b/manpages/pot/lb_bootstrap_cache.1.pot
index 2d6fe31..ce3d872 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: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_bootstrap_cdebootstrap.1.pot b/manpages/pot/lb_bootstrap_cdebootstrap.1.pot
index 25079b7..eca655c 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: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_bootstrap_copy.1.pot b/manpages/pot/lb_bootstrap_copy.1.pot
index b53e5a0..699763b 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: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_bootstrap_debootstrap.1.pot b/manpages/pot/lb_bootstrap_debootstrap.1.pot
index ff374d0..a1559e3 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: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_build.1.pot b/manpages/pot/lb_build.1.pot
index ec6d108..ef6d6fe 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: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot.1.pot b/manpages/pot/lb_chroot.1.pot
index 774271c..4f7f2e9 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: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_apt.1.pot b/manpages/pot/lb_chroot_apt.1.pot
index 1b4abdf..01f4e29 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: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_archives.1.pot b/manpages/pot/lb_chroot_archives.1.pot
index 8e944f9..031261c 100644
--- a/manpages/pot/lb_chroot_archives.1.pot
+++ b/manpages/pot/lb_chroot_archives.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_cache.1.pot b/manpages/pot/lb_chroot_cache.1.pot
index c58c599..6bf10b1 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: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_debianchroot.1.pot b/manpages/pot/lb_chroot_debianchroot.1.pot
index 4806fb3..20d1a63 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: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_devpts.1.pot b/manpages/pot/lb_chroot_devpts.1.pot
index f172d60..b47cbb6 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: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_dpkg.1.pot b/manpages/pot/lb_chroot_dpkg.1.pot
index 365c7d6..8831486 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: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_hacks.1.pot b/manpages/pot/lb_chroot_hacks.1.pot
index 4a87f10..25a0050 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: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_hooks.1.pot b/manpages/pot/lb_chroot_hooks.1.pot
index 05c1f29..c49f209 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: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_hostname.1.pot b/manpages/pot/lb_chroot_hostname.1.pot
index 247ab59..63de310 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: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_hosts.1.pot b/manpages/pot/lb_chroot_hosts.1.pot
index c0d2f17..bb09371 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: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_install-packages.1.pot b/manpages/pot/lb_chroot_install-packages.1.pot
index d99cb9d..03d7102 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: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_interactive.1.pot b/manpages/pot/lb_chroot_interactive.1.pot
index 1f83d38..b7fa71d 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: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_linux-image.1.pot b/manpages/pot/lb_chroot_linux-image.1.pot
index 23e67db..70f4049 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: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_local-includes.1.pot b/manpages/pot/lb_chroot_local-includes.1.pot
index 0933363..4a61894 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: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_local-patches.1.pot b/manpages/pot/lb_chroot_local-patches.1.pot
index c8de69c..00b49f9 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: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_local-preseed.1.pot b/manpages/pot/lb_chroot_local-preseed.1.pot
index 6de6b97..b8eecc5 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: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_packagelists.1.pot b/manpages/pot/lb_chroot_packagelists.1.pot
index 1ee7cee..f108d76 100644
--- a/manpages/pot/lb_chroot_packagelists.1.pot
+++ b/manpages/pot/lb_chroot_packagelists.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_packages.1.pot b/manpages/pot/lb_chroot_packages.1.pot
index 42008b1..826e914 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: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_proc.1.pot b/manpages/pot/lb_chroot_proc.1.pot
index aa53b7b..c6d5214 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: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_resolv.1.pot b/manpages/pot/lb_chroot_resolv.1.pot
index f938d98..e192a35 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: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_selinuxfs.1.pot b/manpages/pot/lb_chroot_selinuxfs.1.pot
index 465a745..b8fbf77 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: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_sysfs.1.pot b/manpages/pot/lb_chroot_sysfs.1.pot
index 5f44c21..9c9b0e5 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: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_sysv-rc.1.pot b/manpages/pot/lb_chroot_sysv-rc.1.pot
index 2aa3ae7..7675662 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: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_task-lists.1.pot b/manpages/pot/lb_chroot_task-lists.1.pot
index f878237..6052cf4 100644
--- a/manpages/pot/lb_chroot_task-lists.1.pot
+++ b/manpages/pot/lb_chroot_task-lists.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_chroot_upstart.1.pot b/manpages/pot/lb_chroot_upstart.1.pot
index 50be16a..49c8271 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: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_clean.1.pot b/manpages/pot/lb_clean.1.pot
index 257cf61..f0f3099 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: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_config.1.pot b/manpages/pot/lb_config.1.pot
index a5e300c..f8fb7f5 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: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_local.1.pot b/manpages/pot/lb_local.1.pot
index f448be8..6938cc8 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: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_source.1.pot b/manpages/pot/lb_source.1.pot
index d99fed6..ecbdfa4 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: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_source_checksums.1.pot b/manpages/pot/lb_source_checksums.1.pot
index 62dd6df..c19ac49 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: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_source_debian-live.1.pot b/manpages/pot/lb_source_debian-live.1.pot
index 2209178..3b77d79 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: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_source_debian.1.pot b/manpages/pot/lb_source_debian.1.pot
index c4ed1a3..9166e37 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: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_source_disk.1.pot b/manpages/pot/lb_source_disk.1.pot
index c3cb73f..554b793 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: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_source_hdd.1.pot b/manpages/pot/lb_source_hdd.1.pot
index 816eff1..4e592eb 100644
--- a/manpages/pot/lb_source_hdd.1.pot
+++ b/manpages/pot/lb_source_hdd.1.pot
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_source_iso.1.pot b/manpages/pot/lb_source_iso.1.pot
index 527e77a..35824c0 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: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_source_tar.1.pot b/manpages/pot/lb_source_tar.1.pot
index a2f23d4..bd23c73 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: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_source_virtual-hdd.1.pot b/manpages/pot/lb_source_virtual-hdd.1.pot
index 893b418..6c5aac1 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: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/lb_testroot.1.pot b/manpages/pot/lb_testroot.1.pot
index fad9a03..45f6708 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: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/manpages/pot/live-build.7.pot b/manpages/pot/live-build.7.pot
index 36c86f0..b74dce0 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: 2012-07-18 22:48+0300\n"
+"POT-Creation-Date: 2012-07-19 04:15+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"
@@ -77,7 +77,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "2012-07-18"
+msgid "2012-07-19"
 msgstr ""
 
 #. type: TH
@@ -109,7 +109,7 @@ msgstr ""
 #: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
 #: en/lb_testroot.1:1 en/live-build.7:1
 #, no-wrap
-msgid "3.0~a52-1"
+msgid "3.0~a53-1"
 msgstr ""
 
 #. type: TH
diff --git a/package-lists/debian-science b/package-lists/debian-science
deleted file mode 100644
index 75501b4..0000000
--- a/package-lists/debian-science
+++ /dev/null
@@ -1,11 +0,0 @@
-# /usr/share/live/build/package-lists/debian-science - package list for live-build(7)
-
-#include <standard>
-
-# http://qa.debian.org/developer.php?login=debian-science-maintainers@lists.alioth.debian.org
-
-science-astronomy science-biology science-chemistry
-science-electronics science-engineering science-geography
-science-linguistics science-mathematics science-mathematics-dev
-science-physics science-robotics science-statistics science-typesetting
-science-viewing
diff --git a/package-lists/minimal b/package-lists/minimal
index 4cb7438..26b2296 100644
--- a/package-lists/minimal
+++ b/package-lists/minimal
@@ -1,10 +1,5 @@
 # /usr/share/live/build/package-lists/minimal - package list for live-build(7)
 
-# Warning: if you only use this list directly, not inherited through e.g.
-# standard, then live-build also triggers the minimal hook and some other
-# things to make the image smaller. This can lead to breakages at any time,
-# don't use it if you're not willing/capable of fixing any arising issues.
-
 eject file user-setup sudo
 
 #if MODE ubuntu kubuntu
diff --git a/package-lists/ubuntu-cloud b/package-lists/ubuntu-cloud
deleted file mode 100644
index d890fd1..0000000
--- a/package-lists/ubuntu-cloud
+++ /dev/null
@@ -1,9 +0,0 @@
-# /usr/share/live/build/package-lists/ubuntu-cloud - package list for live-build(7)
-
-#include <minimal>
-
-# Tasks
-standard^ server^ cloud-image^
-
-# Packages
-landscape-client ubuntu-minimal
diff --git a/package-lists/ubuntu-cloud-desktop b/package-lists/ubuntu-cloud-desktop
deleted file mode 100644
index f9a6231..0000000
--- a/package-lists/ubuntu-cloud-desktop
+++ /dev/null
@@ -1,5 +0,0 @@
-# /usr/share/live/build/package-lists/ubuntu-cloud-desktop - package list for live-build(7)
-
-#include <ubuntu-cloud>
-
-ubuntu-destkop^

-- 
live-build



More information about the debian-live-changes mailing list